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

body {
    font-family: 'Georgia', 'Garamond', serif;
    font-size: 17px;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.3px;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background-color: #ffffff;
}

.nav-logo {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.hero-premium {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-content-minimal {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 40px;
}

.hero-content-minimal h1 {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a4a4a;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.intro-space {
    padding: 120px 60px;
    background-color: #ffffff;
}

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

.text-large {
    font-size: 24px;
    line-height: 1.8;
    color: #2c2c2c;
    font-weight: 300;
}

.visual-break {
    width: 100%;
    background-color: #e8e8e8;
}

.visual-break img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.philosophy-section {
    padding: 140px 60px;
    background-color: #f9f9f9;
}

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

.philosophy-text {
    max-width: 680px;
    margin: 0 auto;
}

.philosophy-text h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.philosophy-text p {
    margin-bottom: 28px;
    font-size: 18px;
}

.collections-minimal {
    padding: 100px 60px;
    background-color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 90px;
}

.collection-item {
    display: flex;
    gap: 80px;
    margin-bottom: 110px;
    align-items: center;
}

.collection-item.reverse {
    flex-direction: row-reverse;
}

.collection-visual {
    flex: 1;
    background-color: #f5f5f5;
}

.collection-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.collection-details {
    flex: 1;
    padding: 40px;
}

.collection-details h3 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.collection-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #3a3a3a;
}

.price-display {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.btn-select {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.form-section-minimal {
    padding: 120px 60px;
    background-color: #f5f5f5;
}

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

.form-container-center h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 17px;
    color: #4a4a4a;
}

.contact-form {
    background-color: #ffffff;
    padding: 50px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 18px;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 12px;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.trust-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #5a5a5a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-minimal {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 70px 60px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    font-size: 24px;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    color: #a0a0a0;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-col a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444444;
    font-size: 13px;
    color: #808080;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 25px 60px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #3a3a3a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-cookie-accept:hover {
    background-color: #3a3a3a;
}

.btn-cookie-reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.btn-cookie-reject:hover {
    background-color: #d0d0d0;
}

.page-hero-minimal {
    padding: 100px 60px;
    background-color: #f5f5f5;
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: #5a5a5a;
    font-weight: 300;
}

.about-intro {
    padding: 100px 60px;
    background-color: #ffffff;
}

.about-story {
    padding: 80px 60px;
    background-color: #fafafa;
}

.story-block {
    display: flex;
    gap: 70px;
    margin-bottom: 100px;
    align-items: center;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.story-text {
    flex: 1;
    padding: 30px;
}

.story-text h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.story-text p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.7;
}

.values-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.value-items {
    margin-top: 60px;
}

.value-item {
    margin-bottom: 50px;
}

.value-item h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
}

.commitment-section {
    padding: 100px 60px;
    background-color: #f9f9f9;
}

.commitment-section h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.commitment-section p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.7;
}

.services-grid {
    padding: 100px 60px;
    background-color: #ffffff;
}

.service-card {
    display: flex;
    gap: 60px;
    margin-bottom: 90px;
    align-items: flex-start;
}

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

.service-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.service-info {
    flex: 1;
    padding: 30px;
}

.service-info h2 {
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 26px;
    color: #3a3a3a;
}

.service-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.feature-tag {
    background-color: #f5f5f5;
    padding: 8px 16px;
    font-size: 13px;
    color: #2c2c2c;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-price {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 26px;
    color: #1a1a1a;
}

.btn-select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service:hover {
    background-color: #3a3a3a;
}

.services-note {
    padding: 60px 60px 100px;
    background-color: #ffffff;
}

.contact-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.contact-details > p {
    font-size: 17px;
    margin-bottom: 50px;
    color: #3a3a3a;
}

.contact-info-block {
    margin-bottom: 38px;
}

.contact-info-block h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-visual {
    flex: 1;
    background-color: #e8e8e8;
}

.contact-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.contact-note {
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
}

.thanks-section {
    padding: 150px 60px;
    background-color: #fafafa;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 35px;
}

.thanks-container h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 18px;
    color: #2c2c2c;
}

.thanks-container > p {
    font-size: 16px;
    margin-bottom: 50px;
    color: #5a5a5a;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 35px;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-secondary {
    background-color: #e0e0e0;
    color: #2c2c2c;
    padding: 16px 35px;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

.legal-page {
    padding: 80px 60px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.legal-date {
    font-size: 14px;
    color: #808080;
    margin-bottom: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 45px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.legal-page p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .nav-minimal {
        padding: 30px 30px;
    }

    .nav-logo {
        font-size: 22px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-content-minimal h1 {
        font-size: 42px;
    }

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

    .intro-space,
    .philosophy-section,
    .collections-minimal,
    .form-section-minimal,
    .trust-section {
        padding: 80px 30px;
    }

    .collection-item,
    .story-block,
    .service-card,
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .collection-item.reverse,
    .story-block.reverse,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .section-title-center {
        font-size: 36px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

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

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