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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
    font-size: 17px;
}

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

a {
    color: #1a1a1a;
    text-decoration: none;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.btn-cookie {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-cookie:hover {
    background-color: #e8e8e8;
}

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

.btn-cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    color: #4a4a4a;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Editorial Content - Main Container */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 80px;
}

.hero-text-center {
    text-align: center;
    margin-bottom: 50px;
}

.hero-text-center h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -0.8px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #5a5a5a;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image {
    margin: 50px 0;
    border-radius: 6px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
}

/* Page Header */
.page-header {
    margin-bottom: 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: -0.7px;
}

.intro-text {
    font-size: 19px;
    line-height: 1.6;
    color: #5a5a5a;
    max-width: 600px;
    margin: 0 auto;
}

.effective-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

/* Narrow Column - Editorial Style */
.narrow-column {
    max-width: 640px;
    margin: 0 auto;
}

.narrow-column h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    margin: 50px 0 24px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.narrow-column h3 {
    font-size: 21px;
    line-height: 1.4;
    font-weight: 600;
    margin: 35px 0 16px;
    color: #2a2a2a;
}

.narrow-column p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.opening-thought {
    font-size: 19px;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 28px;
}

/* Story Sections */
.story-intro,
.problem-reveal,
.insight-section,
.approach-section,
.philosophy-section,
.team-section,
.manufacturing-section,
.commitment-section,
.story-section {
    margin-bottom: 70px;
}

/* Pullquote */
.pullquote-section {
    margin: 70px 0;
    padding: 40px 0;
}

.large-quote {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    color: #1a1a1a;
    border-left: none;
    max-width: 580px;
    margin: 0 auto;
}

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

.cta-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 14px 32px;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s;
}

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

/* Image Breaks */
.image-break {
    margin: 70px 0;
}

.image-break figure {
    border-radius: 6px;
    overflow: hidden;
}

.image-break figcaption {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 12px;
    font-style: italic;
}

.visual-proof {
    margin: 70px 0;
}

.wide-image {
    border-radius: 6px;
    overflow: hidden;
}

/* Trust Builder */
.trust-builder {
    margin: 70px 0;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.trust-card,
.value-card {
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 6px;
}

.trust-card h3,
.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.trust-card p,
.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

/* Testimonials Inline */
.testimonial-inline {
    margin: 70px 0;
}

.customer-quote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: #2a2a2a;
    border-left: 4px solid #1a1a1a;
    padding-left: 30px;
    margin: 40px 0;
}

.customer-quote cite {
    display: block;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    margin-top: 16px;
    color: #5a5a5a;
}

.final-testimonials {
    margin: 70px 0;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-grid blockquote {
    font-size: 17px;
    line-height: 1.6;
    font-style: italic;
    color: #3a3a3a;
    padding: 25px;
    background-color: #f8f8f8;
    border-radius: 6px;
    border-left: 3px solid #1a1a1a;
}

.testimonial-grid cite {
    display: block;
    font-size: 14px;
    font-style: normal;
    margin-top: 12px;
    color: #666;
}

/* Services Editorial */
.benefits-reveal,
.services-editorial {
    margin: 70px 0;
}

.service-item,
.service-detail {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child,
.service-detail:last-child {
    border-bottom: none;
}

.service-content h3,
.service-content-full h2 {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-content p,
.service-content-full p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-description {
    font-size: 18px;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.service-includes {
    font-size: 15px;
    color: #5a5a5a;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-pricing {
    margin: 30px 0;
    padding: 25px;
    background-color: #f5f5f5;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 15px;
    color: #5a5a5a;
    font-weight: 600;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.collection-includes {
    margin: 30px 0;
}

.collection-includes h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 16px;
}

.collection-includes ul {
    list-style-position: inside;
    padding-left: 0;
}

.collection-includes li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-image {
    margin-bottom: 30px;
    border-radius: 6px;
    overflow: hidden;
}

.select-service {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.select-service:hover {
    background-color: #333;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    display: none;
}

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

.sticky-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background-color: #333;
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

/* Urgency Section */
.urgency-section {
    margin: 70px 0;
    padding: 35px;
    background-color: #fff5e6;
    border-left: 4px solid #ff9800;
    border-radius: 6px;
}

.urgency-section h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

/* Form Section */
.form-section {
    margin: 80px 0;
    padding: 50px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.editorial-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.submit-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 18px 48px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #333;
}

/* CTA Blocks */
.cta-block-section {
    margin: 70px 0;
}

.cta-block {
    text-align: center;
    padding: 50px 40px;
    background-color: #f5f5f5;
    border-radius: 6px;
}

.cta-block h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-block p {
    font-size: 17px;
    margin-bottom: 28px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #333;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a1a1a;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.final-cta-section {
    margin: 70px 0;
}

/* Contact Page */
.contact-info-section {
    margin: 60px 0;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-details,
.visit-info {
    background-color: #f8f8f8;
    padding: 35px;
    border-radius: 6px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: underline;
}

.location-visual {
    margin: 60px 0;
}

.faq-section {
    margin: 70px 0;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

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

.thanks-message {
    font-size: 19px;
    color: #5a5a5a;
    margin-bottom: 40px;
}

.confirmation-details {
    text-align: left;
    margin: 50px auto;
    max-width: 600px;
    padding: 35px;
    background-color: #f8f8f8;
    border-radius: 6px;
}

.confirmation-details h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.next-steps {
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 16px;
    line-height: 1.6;
}

.reservation-summary {
    margin: 40px 0;
    padding: 25px;
    background-color: #e8f5e9;
    border-radius: 6px;
    border-left: 4px solid #4caf50;
}

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

.contact-support {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.contact-support h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.contact-support a {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Legal Content */
.legal-content .narrow-column {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 19px;
    font-weight: 600;
    margin: 25px 0 12px;
    color: #2a2a2a;
}

.legal-section p {
    margin-bottom: 14px;
    line-height: 1.7;
}

.legal-section ul,
.legal-section ol {
    margin: 16px 0 16px 24px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Footer */
.footer-minimal {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 30px 30px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-section a {
    color: #b0b0b0;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

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

    .nav-links {
        gap: 20px;
    }

    .hero-text-center h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .large-quote {
        font-size: 22px;
    }

    .narrow-column h2 {
        font-size: 24px;
    }

    .service-content h3,
    .service-content-full h2 {
        font-size: 22px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .editorial-content {
        padding: 40px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 35px;
    }
}

@media (min-width: 769px) {
    .contact-layout {
        flex-direction: row;
        gap: 40px;
    }

    .contact-details,
    .visit-info {
        flex: 1;
    }
}
