* {
    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: #2c2c2c;
    background: #fefefe;
}

.ad-disclosure {
    background: #f9f5f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #e8e0d8;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    border-bottom: 1px solid #e8e0d8;
}

.nav-left .logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 32px;
}

.nav-right a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #8b7355;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 8%;
    background: #f9f5f1;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.2rem;
    color: #5a5a5a;
    max-width: 500px;
    line-height: 1.6;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.story-intro {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.intro-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
}

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

.problem-section {
    display: flex;
    background: #f4f0ec;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.problem-visual {
    flex: 1;
    height: 450px;
    overflow: hidden;
}

.problem-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.problem-content {
    flex: 1;
}

.problem-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.problem-content p {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.insight-reveal {
    padding: 100px 8%;
    background: #fff;
}

.insight-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 28px;
    text-align: center;
    color: #1a1a1a;
}

.insight-wrapper > p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.insight-wrapper > p a {
    color: #8b7355;
    text-decoration: none;
    border-bottom: 1px solid #8b7355;
}

.insight-columns {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.column {
    flex: 1;
}

.column h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.column p {
    font-size: 1rem;
    color: #5a5a5a;
}

.trust-build {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background: #faf8f5;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.trust-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
}

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

.testimonials-inline {
    padding: 100px 8%;
    background: #2c2c2c;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial p {
    font-size: 1.3rem;
    color: #f5f5f5;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial span {
    font-size: 0.95rem;
    color: #b8b8b8;
}

.collections-preview {
    padding: 100px 5%;
    background: #fff;
}

.collections-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.collections-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.collection-card {
    width: calc(33.333% - 27px);
    min-width: 300px;
    background: #fafafa;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 280px;
    overflow: hidden;
}

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

.collection-card h3 {
    font-size: 1.5rem;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.collection-card p {
    font-size: 0.95rem;
    color: #5a5a5a;
    margin: 0 24px 20px;
    line-height: 1.6;
}

.price-reveal {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b7355;
    margin: 0 24px 24px;
}

.benefits-reveal {
    padding: 100px 8%;
    background: #f9f5f1;
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.benefits-split {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.benefit-item p {
    font-size: 1rem;
    color: #5a5a5a;
}

.cta-form-section {
    padding: 100px 8%;
    background: #2c2c2c;
}

.form-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #f5f5f5;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 1.05rem;
    color: #d0d0d0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    background: #fafafa;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
    background: #fff;
}

.btn-primary {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    background: #8b7355;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: #6f5c46;
}

.btn-secondary {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    background: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

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

.references {
    padding: 60px 8%;
    background: #f9f5f1;
}

.references h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.references ol {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
}

.references li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.references a {
    color: #8b7355;
    text-decoration: none;
    border-bottom: 1px solid #8b7355;
}

footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    color: #f5f5f5;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 0.9rem;
    color: #b8b8b8;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f5f5f5;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #777;
    margin-bottom: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    padding: 24px 5%;
    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: 30px;
}

.cookie-content p {
    color: #d0d0d0;
    font-size: 0.95rem;
    flex: 1;
}

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

.cookie-actions {
    display: flex;
    gap: 16px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background: #8b7355;
    color: #fff;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    background: #3a3a3a;
}

.page-hero {
    background: #f9f5f1;
    padding: 100px 8%;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #5a5a5a;
}

.about-split {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.about-visual {
    flex: 1;
    height: 450px;
    overflow: hidden;
}

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

.philosophy-section {
    padding: 100px 8%;
    background: #fff;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.philosophy-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.philosophy-item p {
    font-size: 1rem;
    color: #5a5a5a;
}

.process-split {
    display: flex;
    background: #f4f0ec;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.process-visual {
    flex: 1;
    height: 450px;
    overflow: hidden;
}

.process-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.process-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.team-section {
    padding: 100px 8%;
    background: #fff;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto 50px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.team-member p {
    font-size: 1rem;
    color: #5a5a5a;
}

.commitment-section {
    padding: 80px 8%;
    background: #f9f5f1;
}

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

.commitment-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.commitment-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.services-intro {
    padding: 60px 8%;
    background: #fff;
}

.services-lead {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-detail {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.service-note {
    font-style: italic;
    color: #6a6a6a;
    margin-top: 24px;
}

.service-pricing {
    margin-top: 28px;
}

.service-pricing .price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #8b7355;
}

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

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

.cta-services {
    padding: 80px 8%;
    background: #2c2c2c;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.2rem;
    color: #f5f5f5;
    margin-bottom: 16px;
}

.cta-services p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 32px;
}

.contact-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-item p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: #f9f5f1;
}

.contact-note p {
    font-size: 0.95rem;
    color: #4a4a4a;
}

.contact-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.visit-info {
    padding: 80px 8%;
    background: #f9f5f1;
}

.visit-info h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.visit-info p {
    font-size: 1.05rem;
    color: #4a4a4a;
    max-width: 800px;
    margin-bottom: 16px;
}

.faq-section {
    padding: 80px 8%;
    background: #fff;
}

.faq-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.faq-item p {
    font-size: 1rem;
    color: #5a5a5a;
}

.thanks-container {
    padding: 100px 8%;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #5a5a5a;
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 60px;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 12px;
}

#serviceConfirmation {
    font-weight: 600;
    color: #8b7355;
}

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.thanks-next > p {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 28px;
}

.thanks-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.thanks-note {
    padding: 24px;
    background: #f9f5f1;
}

.thanks-note p {
    font-size: 0.95rem;
    color: #4a4a4a;
}

.legal-page {
    padding: 80px 8%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.legal-page p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-page a {
    color: #8b7355;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #d0d0d0;
}

.cookies-table th {
    background: #f4f0ec;
    font-weight: 600;
    color: #2c2c2c;
}

.cookies-table td {
    font-size: 0.95rem;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .hero-split,
    .story-intro,
    .problem-section,
    .trust-build,
    .about-split,
    .process-split,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

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

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

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

    .collection-card {
        width: 100%;
    }

    .nav-right {
        gap: 16px;
    }

    .nav-right a {
        font-size: 0.85rem;
    }

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

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