:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #8b7355;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    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.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

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

.hero-visual {
    margin-top: 70px;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    bottom: 8%;
    left: 5%;
    right: 5%;
    color: var(--white);
    z-index: 10;
}

.hero-overlay h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-overlay p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}

.intro-story {
    padding: 5rem 5%;
    background: var(--white);
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-narrow p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.visual-break {
    width: 100%;
    overflow: hidden;
}

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

.problem-reveal {
    padding: 6rem 5%;
    background: var(--light-gray);
}

.content-offset {
    max-width: 1200px;
    margin: 0 auto;
}

.content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.problem-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.cta-inline {
    padding: 3rem 5%;
    text-align: center;
    background: var(--white);
}

.cta-link {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.3rem;
}

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

.insight-section {
    padding: 6rem 5%;
    background: var(--white);
}

.insight-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.insight-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

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

.trust-build {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-reasons {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.testimonials-flow {
    padding: 6rem 5%;
    background: var(--light-gray);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-block blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--primary-color);
}

.testimonial-block cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    color: var(--accent-color);
}

.visual-divider {
    width: 100%;
}

.visual-divider img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}

.services-preview {
    padding: 6rem 5%;
    background: var(--white);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 1.2rem;
    color: var(--text-color);
}

.services-visual-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--light-gray);
    overflow: hidden;
}

.service-image {
    width: 100%;
}

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

.service-content {
    padding: 2rem;
}

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

.service-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.btn-select {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

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

.urgency-block {
    padding: 5rem 5%;
    background: var(--accent-color);
    color: var(--white);
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.urgency-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.form-section {
    padding: 6rem 5%;
    background: var(--light-gray);
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.form-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    background: var(--white);
    font-family: inherit;
    transition: var(--transition);
}

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

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

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

.final-cta {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.btn-cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

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

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col li {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.sticky-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

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

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

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

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

.page-hero {
    margin-top: 70px;
    height: 60vh;
    min-height: 400px;
}

.services-detailed {
    padding: 4rem 5%;
    background: var(--white);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-visual {
    width: 100%;
}

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

.service-info {
    padding: 1rem 0;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-features ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-color);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.services-cta {
    padding: 5rem 5%;
    background: var(--light-gray);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-intro-text {
    padding: 4rem 5%;
    background: var(--white);
}

.intro-narrow {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
}

.contact-section {
    padding: 5rem 5%;
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.info-block a {
    color: var(--accent-color);
}

.info-block a:hover {
    text-decoration: underline;
}

.note {
    font-style: italic;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.contact-map {
    width: 100%;
}

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

.contact-note {
    padding: 5rem 5%;
    background: var(--light-gray);
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
}

.note-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.note-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-section {
    padding: 8rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.service-confirmation {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

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

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

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

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

.about-story {
    padding: 5rem 5%;
    background: var(--white);
}

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.philosophy-section {
    padding: 6rem 5%;
    background: var(--light-gray);
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.philosophy-card {
    padding: 2rem;
    background: var(--white);
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.philosophy-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.team-section {
    padding: 6rem 5%;
    background: var(--white);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.member-role {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.process-section {
    padding: 6rem 5%;
    background: var(--light-gray);
}

.process-content {
    max-width: 1000px;
    margin: 0 auto;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    position: relative;
    padding-left: 5rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.values-section {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.values-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.values-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.values-narrow p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.legal-page {
    padding: 5rem 5% 3rem;
    background: var(--white);
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-date {
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.legal-content strong {
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .nav-menu {
        gap: 3rem;
    }

    .problem-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-item {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .insight-wrap {
        flex-direction: row;
        align-items: center;
    }

    .insight-text {
        flex: 1;
    }

    .insight-image {
        flex: 1;
    }

    .trust-reasons {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .service-card-visual {
        flex-direction: row;
    }

    .service-card-visual:nth-child(even) {
        flex-direction: row-reverse;
    }

    .service-image {
        flex: 1;
    }

    .service-content {
        flex: 1;
        padding: 3rem;
    }

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

    .footer-col {
        flex: 1;
    }

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

    .service-detail {
        flex-direction: row;
        gap: 4rem;
    }

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

    .service-visual {
        flex: 1;
    }

    .service-info {
        flex: 1;
    }

    .contact-container {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-map {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .philosophy-grid {
        flex-direction: row;
    }

    .philosophy-card {
        flex: 1;
    }

    .team-members {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .team-member {
        flex: 1 1 calc(33.333% - 2rem);
        min-width: 250px;
    }
}

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 5%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }

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

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

@media (min-width: 1024px) {
    .services-visual-grid {
        gap: 5rem;
    }
}