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

:root {
    --primary-color: #2a2a2a;
    --secondary-color: #8a9a8f;
    --accent-color: #c9b8a8;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f9f7f5;
    --background-white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    width: 90%;
    max-width: 1200px;
}

.nav-brand {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 15px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.ad-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    color: white;
    padding: 20px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 300;
    letter-spacing: -1px;
    max-width: 900px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    opacity: 0.9;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 20px;
}

.wide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.story-intro h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 30px;
}

.story-intro p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.image-text-overlap {
    padding: 100px 20px;
}

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

.overlap-image {
    flex: 1;
    height: 600px;
    border-radius: 2px;
    overflow: hidden;
}

.overlap-text {
    flex: 1;
}

.overlap-text h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
}

.overlap-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.problem-reveal {
    background-color: var(--background-light);
    padding: 100px 20px;
}

.problem-reveal h2 {
    font-size: 38px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
}

.problem-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.problem-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.visual-break {
    padding: 0;
}

.break-image-container {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.insight-section {
    padding: 100px 20px;
}

.insight-section h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
}

.insight-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonials-inline {
    background-color: var(--primary-color);
    color: white;
    padding: 100px 20px;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    opacity: 0.8;
}

.collections-preview {
    padding: 100px 20px;
}

.collections-header {
    text-align: center;
    margin-bottom: 60px;
}

.collections-header h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 15px;
}

.collections-header p {
    font-size: 18px;
    color: var(--text-light);
}

.collections-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.collection-card {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.card-image {
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.select-service {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 2px;
    transition: opacity 0.3s;
}

.select-service:hover {
    opacity: 0.85;
}

.pricing-reveal {
    background-color: var(--background-light);
    padding: 100px 20px;
}

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

.pricing-container h2 {
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-item {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 35px;
    border-radius: 2px;
}

.pricing-item h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.price {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price-detail {
    font-size: 14px;
    color: var(--text-light);
}

.cta-primary {
    padding: 100px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 18px 50px;
    font-size: 16px;
    border-radius: 2px;
    transition: opacity 0.3s;
    display: inline-block;
}

.cta-button:hover {
    opacity: 0.85;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 50px;
    max-width: 600px;
    width: 90%;
    position: relative;
    border-radius: 2px;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-light);
}

.close-modal:hover {
    color: var(--text-dark);
}

.contact-form h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 40px;
    font-size: 15px;
    border-radius: 2px;
    transition: opacity 0.3s;
    width: 100%;
}

.submit-btn:hover {
    opacity: 0.85;
}

.disclaimer-section {
    background-color: var(--background-light);
    padding: 60px 20px;
}

.disclaimer {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
}

.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 20px 20px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    opacity: 0.8;
    display: block;
    margin-bottom: 10px;
}

.footer-section a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 25px;
    z-index: 3000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 2px;
    transition: opacity 0.3s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
}

.page-hero-img {
    width: 100%;
    height: 100%;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.page-hero-overlay h1 {
    color: white;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
}

.services-intro {
    padding: 80px 20px;
}

.services-intro h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.service-detailed {
    padding: 80px 20px;
}

.service-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.service-detailed.reverse .service-layout {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 15px;
}

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    font-size: 15px;
    color: var(--text-light);
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

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

.about-story {
    padding: 80px 20px;
}

.about-story h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 30px;
}

.about-story p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-visual-break {
    padding: 80px 20px;
}

.break-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.break-text {
    flex: 1;
}

.break-text h3 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

.break-text p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.break-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.about-process {
    padding: 100px 20px;
    background-color: var(--background-white);
}

.about-process h2 {
    font-size: 38px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
}

.process-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.process-step h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-values {
    padding: 100px 20px;
}

.about-values h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-values > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-team {
    padding: 80px 20px;
}

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

.team-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
}

.team-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-cta {
    padding: 80px 20px;
    text-align: center;
}

.about-cta .cta-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
}

.about-cta .cta-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-header {
    padding: 120px 20px 60px;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-main {
    padding: 60px 20px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-detail p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 5px;
}

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

.contact-additional {
    background-color: var(--background-light);
    padding: 80px 20px;
}

.contact-additional h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 50px;
    text-align: center;
}

.faq-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.faq-item h3 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 20px;
}

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

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-confirmation {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.thanks-content > p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 50px;
}

.thanks-next h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
}

.thanks-next > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thanks-link {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 2px;
    transition: opacity 0.3s;
    text-align: center;
}

.thanks-link:hover {
    opacity: 0.85;
}

.thanks-visual {
    flex: 1;
    height: 700px;
    overflow: hidden;
}

.legal-content {
    padding: 120px 20px 80px;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 10px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 26px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 968px) {
    .floating-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .overlap-container,
    .service-layout,
    .break-content,
    .contact-layout,
    .thanks-container {
        flex-direction: column;
    }

    .overlap-image,
    .service-image,
    .break-image,
    .contact-visual,
    .thanks-visual {
        height: 400px;
    }

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

    .collection-card {
        min-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .narrow-content,
    .wide-content {
        padding: 60px 20px;
    }

    .problem-grid,
    .pricing-grid,
    .process-grid,
    .faq-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .modal-content {
        padding: 30px;
    }
}