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

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: #2d5a3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d28;
}

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

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

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

h3 {
    font-size: 1.6rem;
    margin-top: 1.8rem;
}

p {
    margin-bottom: 1.4rem;
}

/* Navigation - Minimal Style */
.minimal-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0dc;
}

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

.brand {
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #2d5a3d;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5a5a5a;
}

.nav-links a:hover {
    color: #2d5a3d;
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #2a2a2a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Editorial Layout - Narrow Column */
.narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
}

/* Hero Story Section */
.hero-story {
    margin-top: 70px;
}

.hero-image-wrap {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.hero-story h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

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

/* Intro Narrative */
.intro-narrative {
    padding: 4rem 0;
    background: #fff;
}

/* Visual Breaks */
.visual-break {
    margin: 4rem 0;
}

.full-width-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

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

/* Problem Section */
.problem-section {
    padding: 4rem 0;
    background: #f5f3ed;
}

/* Pullquote */
.pullquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #2d5a3d;
    border-left: 4px solid #2d5a3d;
    padding-left: 2rem;
    margin: 3rem 0;
    line-height: 1.5;
}

/* Image-Text Blend */
.image-text-blend {
    padding: 4rem 0;
}

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

.text-block {
    max-width: 680px;
}

.inline-img {
    max-width: 500px;
    margin: 2rem auto;
}

.inline-img img {
    width: 100%;
    border-radius: 4px;
}

/* CTAs */
.inline-cta {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #2d5a3d;
    font-weight: 600;
    border-bottom: 2px solid #2d5a3d;
    padding-bottom: 2px;
}

.inline-cta:hover {
    color: #1a3d28;
    border-color: #1a3d28;
}

/* Service Preview */
.services-preview {
    padding: 5rem 0;
    background: #fff;
}

.section-intro {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
    text-align: center;
}

.service-cards {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: #fafaf8;
    padding: 2.5rem 2rem;
    border: 1px solid #e0e0dc;
    position: relative;
}

.service-card.featured {
    background: #f5f3ed;
    border: 2px solid #2d5a3d;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2d5a3d;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
}

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

.card-cta {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: #2d5a3d;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.card-cta:hover {
    background: #1a3d28;
    color: #fff;
}

/* CTA Blocks */
.cta-block {
    margin: 3rem auto;
    text-align: center;
}

.cta-block.centered {
    max-width: 680px;
    padding: 0 2rem;
}

.primary-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2d5a3d;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 0.5rem;
}

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

.secondary-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.secondary-btn:hover {
    background: #2d5a3d;
    color: #fff;
}

/* Testimonials */
.testimonial-flow {
    padding: 4rem 0;
    background: #f5f3ed;
}

.testimonial {
    margin: 3rem 0;
    padding: 2rem;
    background: #fff;
    border-left: 4px solid #2d5a3d;
}

.quote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #8a8a8a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Insight Section */
.insight-reveal {
    padding: 5rem 0;
    background: #fff;
}

.insight-list {
    margin-top: 3rem;
}

.insight-item {
    margin-bottom: 3rem;
}

.insight-item h3 {
    margin-top: 0;
    color: #2d5a3d;
}

/* Visual Separator */
.visual-separator {
    margin: 0;
}

/* Bonus Value */
.bonus-value {
    padding: 5rem 0;
    background: #f5f3ed;
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
}

.benefit-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Booking Form */
.booking-form-section {
    padding: 5rem 0;
    background: #fff;
}

.form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-intro {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
    border: 1px solid #d0d0cc;
    background: #fafaf8;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 1rem 3rem;
    background: #2d5a3d;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1a3d28;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: #2d5a3d;
    color: #fff;
}

.final-cta h2 {
    color: #fff;
    margin-top: 0;
}

.final-cta p {
    color: #e0e0dc;
    font-size: 1.15rem;
}

.final-cta .secondary-btn {
    background: #fff;
    color: #2d5a3d;
    border-color: #fff;
}

.final-cta .secondary-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.centered {
    text-align: center;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 90, 61, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    text-align: center;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: #fff;
    color: #2d5a3d;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
}

.sticky-btn:hover {
    background: #f5f3ed;
    color: #1a3d28;
}

/* Footer */
.site-footer {
    background: #2a2a2a;
    color: #c0c0bc;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #c0c0bc;
    font-size: 0.95rem;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 42, 0.98);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #a0d1b0;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #2d5a3d;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #1a3d28;
}

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

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

/* Services Page */
.page-header {
    margin-top: 70px;
    padding: 4rem 0 3rem;
    background: #f5f3ed;
}

.header-intro {
    font-size: 1.25rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.services-main {
    padding: 2rem 0;
}

.service-detailed {
    padding: 4rem 2rem;
    background: #fff;
}

.service-detailed.alternate {
    background: #fafaf8;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-info h2 {
    margin-top: 0;
    font-size: 2rem;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.included-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.included-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
    font-size: 1.5rem;
}

.service-price {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: #f5f3ed;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d5a3d;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.price-note {
    display: block;
    font-size: 0.95rem;
    color: #5a5a5a;
    margin-top: 0.5rem;
}

.service-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2d5a3d;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background: #1a3d28;
    color: #fff;
}

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

.contact-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #2d5a3d;
    font-weight: 600;
}

/* About Page */
.about-page {
    margin-top: 70px;
}

.about-header {
    padding: 4rem 0 3rem;
    background: #f5f3ed;
}

.about-intro {
    padding: 4rem 0;
    background: #fff;
}

.about-img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem;
    border-radius: 4px;
}

.about-story {
    padding: 4rem 0;
    background: #fafaf8;
}

.about-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #2d5a3d;
    border-left: 4px solid #2d5a3d;
    padding-left: 2rem;
    margin: 3rem 0;
    line-height: 1.5;
}

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

.philosophy-grid {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.phil-item h3 {
    margin-top: 0;
    color: #2d5a3d;
    font-size: 1.3rem;
}

.credentials-section {
    padding: 5rem 0;
    background: #f5f3ed;
}

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

.experience-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.experience-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
}

.personal-touch {
    padding: 4rem 0;
    background: #fff;
}

.cta-about {
    padding: 5rem 0;
    background: #2d5a3d;
    color: #fff;
}

.cta-about h2 {
    color: #fff;
    margin-top: 0;
}

.cta-about p {
    color: #e0e0dc;
    font-size: 1.15rem;
}

.cta-about .primary-btn {
    background: #fff;
    color: #2d5a3d;
}

.cta-about .primary-btn:hover {
    background: #f5f3ed;
}

.cta-about .secondary-btn {
    border-color: #fff;
    color: #fff;
}

.cta-about .secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Contact Page */
.contact-page {
    margin-top: 70px;
}

.contact-info-section {
    padding: 4rem 2rem;
}

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

.contact-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 2.5rem 2rem;
    border: 1px solid #e0e0dc;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-top: 0;
    color: #2d5a3d;
}

.contact-link {
    display: inline-block;
    font-size: 1.1rem;
    color: #2d5a3d;
    font-weight: 600;
    margin-top: 0.5rem;
}

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

.hours-list {
    list-style: none;
    margin-top: 1rem;
}

.hours-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0dc;
}

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

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

.faq-item h3 {
    margin-top: 0;
    color: #2d5a3d;
    font-size: 1.2rem;
}

.alternative-contact {
    padding: 5rem 0;
    background: #fff;
}

/* Thanks Page */
.thanks-page {
    margin-top: 70px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-content h1 {
    margin-top: 0;
    color: #2d5a3d;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #f5f3ed;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #2d5a3d;
}

.service-selected {
    font-size: 1.1rem;
    margin: 0;
}

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

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-list {
    list-style: none;
    counter-reset: steps;
}

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

.steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: #2d5a3d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.steps-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2d5a3d;
}

.thanks-cta {
    margin-top: 3rem;
}

.thanks-buttons {
    margin-top: 2rem;
}

/* Legal Pages */
.legal-page {
    margin-top: 70px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.last-updated {
    font-size: 0.95rem;
    color: #8a8a8a;
    font-style: italic;
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.6rem;
    color: #2d5a3d;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

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

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

.legal-section address {
    font-style: normal;
    line-height: 1.8;
    margin: 1rem 0;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 250, 248, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        display: none;
        border-bottom: 1px solid #e0e0dc;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-story h1 {
        font-size: 2.5rem;
    }

    .narrow-column {
        padding: 0 1.5rem;
    }

    .service-cards {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .contact-grid {
        flex-direction: column;
    }

    .steps-list li {
        padding-left: 2.5rem;
    }
}

@media (min-width: 769px) {
    .sticky-cta {
        display: none;
    }
}