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

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #7a6f5d;
    --accent-color: #b8a791;
    --light-bg: #f8f6f3;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
}

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

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

h2 {
    font-size: 2.2rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 0.05em;
}

.nav-disclosure {
    font-size: 0.75rem;
    color: var(--text-gray);
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    margin: 0 1rem;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 2000;
    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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.btn-accept, .btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

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

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

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

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 4rem 5%;
    gap: 3rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    padding-right: 3rem;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text-block p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    transform: translateY(-2rem);
}

.hero-image-offset img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-hook {
    padding: 6rem 5% 4rem;
    background-color: var(--light-bg);
}

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

.story-left {
    flex: 1.2;
}

.story-left h2 {
    margin-bottom: 1.5rem;
}

.story-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.story-right {
    flex: 1;
    background-color: var(--secondary-color);
    padding: 1rem;
}

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

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

.insight-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.insight-image {
    flex: 0.8;
    position: sticky;
    top: 120px;
    transform: translateX(-3rem);
}

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

.insight-text {
    flex: 1.2;
    padding-top: 3rem;
}

.insight-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
}

.inline-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.inline-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.problem-content {
    max-width: 1100px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.problem-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-left: 4px solid var(--accent-color);
}

.problem-card p {
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.6;
}

.problem-conclusion {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    border-left: 6px solid var(--secondary-color);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-gray);
    font-family: 'Helvetica Neue', sans-serif;
}

.approach-reveal {
    padding: 6rem 5% 5rem;
    background-color: var(--white);
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-header {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}

.approach-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.approach-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.services-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    background-color: var(--light-bg);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
    flex: 1;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.service-price {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.card-offset-1 {
    margin-left: 0;
}

.card-offset-2 {
    margin-left: 8%;
}

.card-offset-3 {
    margin-left: 4%;
}

.card-offset-4 {
    margin-left: 12%;
}

.card-offset-5 {
    margin-left: 6%;
}

.btn-service, .btn-primary, .btn-submit {
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-service:hover, .btn-primary:hover, .btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.trust-elements {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

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

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

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

.trust-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--white);
    border-top: 4px solid var(--secondary-color);
}

.trust-item h4 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.trust-item p {
    font-size: 1.05rem;
    color: var(--text-gray);
}

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

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

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

.cta-content .btn-primary:hover {
    background-color: var(--light-bg);
}

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

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

.form-container h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}

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

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

.btn-submit {
    margin-top: 1rem;
    align-self: flex-start;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

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

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

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

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent-color);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.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-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero {
    padding: 5rem 5% 3rem;
    background-color: var(--light-bg);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

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

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

.about-text {
    flex: 1.3;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
}

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

.philosophy {
    padding: 5rem 5%;
    background-color: var(--light-bg);
    text-align: center;
}

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

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

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

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

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

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

.team-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.team-card {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-top: 3px solid var(--secondary-color);
}

.team-card h3 {
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 1.05rem;
    color: var(--text-gray);
}

.values {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

.values-content {
    max-width: 1100px;
    margin: 0 auto;
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item {
    padding: 2rem;
    background-color: var(--white);
    border-left: 5px solid var(--accent-color);
}

.value-item h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-item p {
    font-size: 1.05rem;
    color: var(--text-gray);
}

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

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    border: 2px solid var(--border-color);
}

.cta-box h2 {
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

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

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

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

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

.service-image-left, .service-image-right {
    flex: 1;
}

.service-image-left img, .service-image-right img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-text-right, .service-text-left {
    flex: 1;
}

.service-text-right h2, .service-text-left h2 {
    margin-bottom: 1rem;
}

.service-text-right p, .service-text-left p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.service-text-right h3, .service-text-left h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-text-right ul, .service-text-left ul {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.service-text-right li, .service-text-left li {
    margin-bottom: 0.7rem;
    font-size: 1rem;
    color: var(--text-gray);
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.service-pricing .price {
    font-size: 2.2rem;
    color: var(--secondary-color);
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
}

.services-note {
    padding: 3rem 5%;
    background-color: var(--light-bg);
    text-align: center;
}

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

.note-content h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.note-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

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

.cta-services h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

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

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

.cta-services .btn-primary:hover {
    background-color: var(--light-bg);
}

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

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    margin-bottom: 2rem;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.info-item p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.info-note {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

.info-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-gray);
}

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

.contact-form-block h2 {
    margin-bottom: 2rem;
}

.thanks-container {
    min-height: 70vh;
    padding: 5rem 5%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
    background-color: var(--white);
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--light-bg);
}

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

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

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

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

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

.legal-container h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-container h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

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

.cookies-table th {
    background-color: var(--light-bg);
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 3rem 5%;
    }

    .hero-text-block {
        padding-right: 0;
        max-width: 100%;
    }

    .hero-image-offset {
        transform: translateY(0);
        width: 100%;
    }

    .story-container {
        flex-direction: column;
    }

    .insight-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .insight-image {
        transform: translateX(0);
        position: static;
    }

    .service-card {
        flex-direction: column;
        margin-left: 0 !important;
    }

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

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

    .about-container {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-floating {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-disclosure {
        margin: 0;
    }

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

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

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

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

    .cookie-content {
        flex-direction: column;
    }

    .thanks-content {
        padding: 2rem;
    }

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