* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2c2c2c;
    --color-secondary: #8b7355;
    --color-accent: #c9a87c;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f6f3;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: #e0dcd7;
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-bg);
    font-size: 18px;
}

.nav-minimal {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-family: var(--font-secondary);
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    max-width: 800px;
    margin: 4rem auto 5rem;
    padding: 0 2rem;
}

.hero-text-narrow {
    margin-bottom: 3rem;
}

.hero-text-narrow h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--color-text-light);
    font-style: italic;
}

.hero-image {
    margin-top: 2.5rem;
    overflow: hidden;
    border-radius: 2px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-section {
    padding: 4rem 2rem;
}

.story-section.alternate-bg {
    background-color: var(--color-bg-alt);
}

.text-narrow {
    max-width: 680px;
    margin: 0 auto;
}

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

.text-narrow h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--color-primary);
}

.text-narrow h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    font-weight: 500;
    color: var(--color-primary);
}

.text-narrow p {
    margin-bottom: 1.5rem;
}

.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.cta-link {
    font-family: var(--font-secondary);
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--color-secondary);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    letter-spacing: 0.02em;
}

.cta-link:hover {
    background-color: #75624a;
}

.image-break {
    margin: 4rem 0;
    position: relative;
}

.image-break img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    max-width: 680px;
    margin: 1.5rem auto 0;
    padding: 0 2rem;
}

.image-caption p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
    text-align: center;
}

.insight-box {
    background-color: var(--color-bg-alt);
    border-left: 3px solid var(--color-accent);
    padding: 2rem 2.5rem;
    margin: 3rem 0;
}

.insight-box h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.insight-box p {
    margin-bottom: 0;
}

.testimonial-inline {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
}

.testimonial-inline blockquote {
    border: none;
    padding: 0;
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 1rem;
    color: var(--color-text-light);
    font-family: var(--font-secondary);
}

.stats-inline {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-family: var(--font-secondary);
    line-height: 1.4;
}

.services-reveal {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
}

.service-cards-editorial {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background-color: white;
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    border-radius: 2px;
}

.service-content h3 {
    font-size: 1.6rem;
    margin: 0 0 1rem;
    color: var(--color-primary);
}

.service-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--color-text);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.service-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 1.5rem 0 1rem;
    font-family: var(--font-secondary);
}

.btn-select-service {
    font-family: var(--font-secondary);
    width: 100%;
    padding: 1rem;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 0.02em;
}

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

.cta-section {
    padding: 5rem 2rem;
}

.form-container {
    max-width: 600px;
    margin: 3rem auto 0;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-secondary);
    padding: 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    font-size: 1rem;
    color: var(--color-text);
    background-color: white;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group label {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: auto;
    cursor: pointer;
}

.checkbox-group span {
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.btn-primary {
    font-family: var(--font-secondary);
    padding: 1.1rem 2.5rem;
    background-color: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background-color: #75624a;
}

.final-thought {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
}

.quote-final {
    font-size: 1.8rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.attribution {
    font-size: 1rem;
    color: var(--color-text-light);
    font-style: normal;
    font-family: var(--font-secondary);
    text-align: center;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    padding: 1rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
}

.sticky-cta-btn {
    font-family: var(--font-secondary);
    display: block;
    text-align: center;
    padding: 0.9rem;
    background-color: var(--color-accent);
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    letter-spacing: 0.02em;
}

.sticky-cta-btn:hover {
    background-color: #d4b890;
}

.footer {
    background-color: var(--color-primary);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-col h4 {
    font-family: var(--font-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--color-accent);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cccccc;
    font-family: var(--font-secondary);
}

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

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

.footer-col ul li a {
    font-family: var(--font-secondary);
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--color-accent);
}

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

.footer-bottom p {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid var(--color-border);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--color-text);
    margin: 0;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    font-family: var(--font-secondary);
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

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

.btn-accept:hover {
    background-color: #75624a;
}

.btn-reject {
    background-color: #e0e0e0;
    color: var(--color-primary);
}

.btn-reject:hover {
    background-color: #d0d0d0;
}

.cookie-link {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--color-secondary);
    text-decoration: underline;
}

.page-header-editorial {
    max-width: 800px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
}

.page-header-editorial h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--color-primary);
}

.about-image {
    margin: 2.5rem 0;
    overflow: hidden;
    border-radius: 2px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.credentials {
    background-color: var(--color-bg-alt);
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    border-radius: 2px;
}

.credentials ul {
    margin-top: 1rem;
}

.credentials li {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.credentials li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.philosophy-box {
    margin: 3rem 0;
    padding: 0;
}

.philosophy-box blockquote {
    border-left: 3px solid var(--color-accent);
    padding-left: 2rem;
    margin: 1.5rem 0;
}

.philosophy-box p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--color-primary);
}

.cta-inline-about {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    text-align: center;
    border-radius: 2px;
}

.cta-inline-about a {
    color: var(--color-secondary);
    font-weight: 500;
    text-decoration: underline;
}

.services-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-card {
    margin-bottom: 5rem;
}

.service-detail-card.featured {
    border: 2px solid var(--color-accent);
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 2px;
}

.service-detail-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

.service-image {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    border-radius: 2px;
}

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

.service-text {
    flex: 1;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-text ul {
    margin: 1rem 0 1.5rem;
}

.service-text li {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.service-duration {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 1rem 0;
    font-style: italic;
}

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

.featured-price {
    color: var(--color-accent);
}

.featured-btn {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.featured-btn:hover {
    background-color: #d4b890;
}

.booking-section {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
}

.contact-section {
    padding: 3rem 2rem 5rem;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
}

.contact-item p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
}

.contact-item a {
    color: var(--color-secondary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

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

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
}

.faq-item p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 60vh;
}

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

.thanks-details {
    background-color: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 2px;
    margin: 2rem 0;
}

.thanks-details p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.thanks-details strong {
    color: var(--color-secondary);
}

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

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.step-content p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

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

.thanks-cta p {
    font-family: var(--font-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.thanks-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-secondary {
    font-family: var(--font-secondary);
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--color-secondary);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.btn-outline {
    font-family: var(--font-secondary);
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: var(--color-secondary);
    text-decoration: none;
    border: 1px solid var(--color-secondary);
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.thanks-contact {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 2px;
    text-align: center;
}

.thanks-contact p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.thanks-contact a {
    color: var(--color-secondary);
    font-weight: 500;
}

.legal-page {
    padding: 3rem 2rem 5rem;
}

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

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

.legal-page li {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-page a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.legal-page strong {
    font-weight: 600;
    color: var(--color-primary);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
}

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

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

    .nav-links li {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--color-border);
    }

    .hamburger {
        display: flex;
    }

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

    .lead {
        font-size: 1.15rem;
    }

    .stats-inline {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .service-image {
        min-width: 100%;
    }

    .contact-grid {
        flex-direction: column;
        gap: 3rem;
    }

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

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

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .sticky-cta {
        padding: 0.8rem 1rem;
    }

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

    .steps-list {
        padding: 0 1rem;
    }
}

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

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero-text-narrow h1,
    .page-header-editorial h1 {
        font-size: 1.8rem;
    }

    .text-narrow h2 {
        font-size: 1.7rem;
    }

    .quote-final {
        font-size: 1.4rem;
    }

    .testimonial-inline p {
        font-size: 1.2rem;
    }

    .cookie-table {
        font-size: 0.8rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}