* {
    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: #ffffff;
}

.main-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e6e1;
    z-index: 100;
    padding: 1.5rem 0;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-minimal {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 650px;
    color: #5a5a5a;
    font-weight: 300;
    line-height: 1.6;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.intro-spacing {
    padding: 8rem 2rem;
    background: #fafaf9;
}

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

.large-text {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    line-height: 1.6;
    font-weight: 300;
    color: #2a2a2a;
}

.showcase-offset {
    padding: 6rem 2rem;
}

.showcase-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.showcase-text {
    flex: 1;
}

.showcase-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.showcase-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.showcase-image {
    flex: 1;
    min-height: 500px;
    border-radius: 2px;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
}

.value-block {
    padding: 7rem 2rem;
    background: #f5f4f0;
}

.content-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.value-block h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 3rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: -0.02em;
}

.value-columns {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.value-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.image-statement {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-statement img {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.statement-overlay {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
    text-align: center;
}

.statement-overlay p {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    line-height: 1.5;
    font-style: italic;
    color: #1a1a1a;
}

.services-selection {
    padding: 7rem 2rem;
}

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

.content-centered h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: -0.02em;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background: #fafaf9;
    border: 1px solid #e8e6e1;
    width: calc(33.333% - 2rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.service-card p {
    padding: 0 1.5rem;
    color: #4a4a4a;
    flex-grow: 1;
    line-height: 1.6;
}

.price {
    padding: 1rem 1.5rem 0.5rem;
    font-size: 1.8rem;
    font-weight: 300;
    color: #1a1a1a;
}

.select-service {
    margin: 1.5rem;
    padding: 1rem 2rem;
    background: #2a2a2a;
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

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

.form-section {
    padding: 7rem 2rem;
    background: #f5f4f0;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #5a5a5a;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0cec8;
    background: white;
    font-size: 1rem;
    font-family: inherit;
}

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

.selected-service-display {
    padding: 1.5rem;
    background: white;
    border-left: 3px solid #2a2a2a;
    margin-bottom: 2rem;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: #2a2a2a;
    color: white;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-signals {
    padding: 7rem 2rem;
}

.testimonials {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #fafaf9;
    border-left: 2px solid #d0cec8;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    font-style: normal;
    color: #6a6a6a;
    font-size: 0.95rem;
}

.final-cta {
    padding: 6rem 2rem;
    background: #2a2a2a;
    color: white;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #d0d0d0;
}

.cta-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #2a2a2a;
    text-decoration: none;
    transition: transform 0.3s;
}

.cta-link:hover {
    transform: translateY(-2px);
}

.site-footer {
    background: #1a1a1a;
    color: #b0b0b0;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1.1rem;
}

.footer-column p {
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 1000;
    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;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

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

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

.cookie-btn:hover {
    opacity: 0.8;
}

.page-hero {
    padding: 6rem 2rem 4rem;
    background: #fafaf9;
}

.legal-page {
    padding: 4rem 2rem 6rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.updated {
    color: #6a6a6a;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.legal-page h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-page a {
    color: #2a2a2a;
    text-decoration: underline;
}

.about-intro {
    padding: 5rem 2rem;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.split-image {
    flex: 1;
    min-height: 450px;
    border-radius: 2px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
}

.philosophy {
    padding: 6rem 2rem;
    background: #fafaf9;
}

.philosophy-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
}

.philosophy-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.team-approach {
    padding: 6rem 2rem;
}

.team-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    text-align: center;
}

.approach-steps {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
}

.step-number {
    font-size: 3rem;
    font-weight: 200;
    color: #d0cec8;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.step p {
    color: #4a4a4a;
    line-height: 1.7;
}

.values-statement {
    padding: 5rem 2rem;
    background: #f5f4f0;
}

.values-statement blockquote {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    color: #2a2a2a;
    padding: 2rem 0;
}

.who-we-serve {
    padding: 6rem 2rem;
}

.client-types {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.client-type {
    flex: 1;
    min-width: 280px;
}

.client-type h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.commitment {
    padding: 5rem 2rem;
    background: #fafaf9;
}

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.commitment-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-align: center;
}

.about-cta p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.3s;
}

.btn-primary {
    background: #2a2a2a;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #2a2a2a;
    border: 1px solid #2a2a2a;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.services-list {
    padding: 4rem 2rem;
}

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

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

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

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.service-detail-text p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.service-detail-text h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-detail-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-text li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

.service-price {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #e8e6e1;
    border-bottom: 1px solid #e8e6e1;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 300;
    color: #1a1a1a;
}

.service-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2a2a2a;
    color: white;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s;
}

.service-cta:hover {
    background: #1a1a1a;
}

.process-overview {
    padding: 6rem 2rem;
    background: #f5f4f0;
}

.process-steps {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #2a2a2a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.process-step p {
    color: #4a4a4a;
    line-height: 1.6;
}

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

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-align: center;
}

.services-cta p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2a2a2a;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

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

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 280px;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.contact-block p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-email {
    font-size: 1.2rem;
    color: #2a2a2a;
}

.contact-note {
    color: #6a6a6a;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.contact-approach {
    padding: 5rem 2rem;
    background: #fafaf9;
}

.approach-options {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.option {
    flex: 1;
    min-width: 280px;
}

.option h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.option p {
    color: #4a4a4a;
    line-height: 1.7;
}

.option a {
    color: #2a2a2a;
    text-decoration: underline;
}

.what-to-include {
    padding: 5rem 2rem;
}

.what-to-include h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 300;
    text-align: center;
}

.info-needed {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    min-width: 280px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.faq-contact {
    padding: 5rem 2rem;
    background: #f5f4f0;
}

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

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.faq-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

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

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-align: center;
}

.contact-cta p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 6rem 2rem 4rem;
    background: #fafaf9;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.thanks-content {
    padding: 4rem 2rem 6rem;
}

.thanks-message h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 300;
    text-align: center;
}

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

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-item .step-number {
    width: 50px;
    height: 50px;
    background: #2a2a2a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.step-text p {
    color: #4a4a4a;
    line-height: 1.7;
}

.service-confirmation {
    background: #fafaf9;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    border-left: 3px solid #2a2a2a;
}

.service-confirmation h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-price-confirm {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2a2a2a;
}

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

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

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

.link-btn {
    padding: 1rem 2rem;
    background: transparent;
    color: #2a2a2a;
    text-decoration: none;
    border: 1px solid #2a2a2a;
    transition: background 0.3s, color 0.3s;
}

.link-btn:hover {
    background: #2a2a2a;
    color: white;
}

@media (max-width: 768px) {
    .showcase-grid,
    .split-content,
    .service-detail-content {
        flex-direction: column;
    }

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

    .hero-image-bg {
        width: 100%;
        opacity: 0.1;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .value-columns,
    .testimonials,
    .approach-steps,
    .client-types,
    .process-steps,
    .contact-grid,
    .approach-options,
    .info-needed {
        flex-direction: column;
    }
}