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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 30px 20px;
    display: none;
    z-index: 9999;
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #e0e0e0;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.header-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 40px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border: 1px solid #e0e0e0;
}

.nav-minimal {
    display: flex;
    gap: 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-spacious {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    position: relative;
    background-color: #f5f5f5;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin-bottom: 80px;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

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

.hero-image {
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
}

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

.story-section {
    padding: 150px 20px;
    background-color: #ffffff;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.story-lead {
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 50px;
    font-weight: 300;
}

.story-text {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
}

.insight-section {
    padding: 100px 20px;
    background-color: #fafafa;
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-image {
    flex: 1 1 45%;
    background-color: #e8e8e8;
}

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

.insight-content {
    flex: 1 1 45%;
}

.insight-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.2;
}

.insight-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.collections-preview {
    padding: 150px 20px;
    background-color: #ffffff;
}

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

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

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

.collection-card {
    flex: 1 1 350px;
    max-width: 400px;
}

.card-image {
    background-color: #f0f0f0;
    margin-bottom: 30px;
}

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

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

.collection-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-link {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 3px;
    display: inline-block;
}

.trust-section {
    padding: 100px 20px;
    background-color: #f5f5f5;
}

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

.trust-content {
    flex: 1 1 50%;
}

.trust-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 60px;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-point h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
}

.trust-point p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.trust-image {
    flex: 1 1 45%;
    background-color: #e8e8e8;
}

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

.testimonial-section {
    padding: 150px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.testimonial {
    font-size: 24px;
    line-height: 1.8;
    font-style: italic;
    font-weight: 300;
}

.testimonial cite {
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-style: normal;
    color: #aaa;
}

.pricing-reveal {
    padding: 150px 20px;
    background-color: #ffffff;
}

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

.pricing-container h2 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 30px;
}

.pricing-intro {
    font-size: 19px;
    color: #555;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.price-item {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 50px 30px;
    border: 1px solid #e0e0e0;
}

.price-item h3 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
}

.price {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.price-note {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.form-section {
    padding: 150px 20px;
    background-color: #fafafa;
}

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

.form-container h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
}

.form-intro {
    font-size: 17px;
    color: #555;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.8;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.form-group label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    padding: 18px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    background-color: #ffffff;
    font-family: inherit;
}

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

.btn-submit {
    padding: 20px 40px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 80px 20px;
    background-color: #f0f0f0;
}

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

.disclaimer-text {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.footer-minimal {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 20px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 14px;
}

.footer-links a {
    color: #aaa;
}

.footer-info {
    font-size: 13px;
    color: #777;
}

.about-hero {
    padding: 150px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

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

.about-hero h1 {
    font-size: 62px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-lead {
    font-size: 24px;
    color: #555;
    font-weight: 300;
    line-height: 1.6;
}

.about-story {
    padding: 100px 20px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.story-block {
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.story-block img {
    flex: 1 1 45%;
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.story-text {
    flex: 1 1 45%;
}

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

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.team-section {
    padding: 100px 20px;
    background-color: #fafafa;
}

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

.team-container h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
}

.team-intro {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 80px;
}

.team-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    flex: 1 1 300px;
    max-width: 350px;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
}

.team-role {
    font-size: 15px;
    color: #888;
    margin-bottom: 15px;
    font-style: italic;
}

.team-member p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

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

.values-container h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.value-item {
    flex: 1 1 45%;
}

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

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.services-hero {
    padding: 120px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

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

.services-hero h1 {
    font-size: 58px;
    font-weight: 300;
    margin-bottom: 25px;
}

.services-hero p {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
}

.services-list {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.service-detail {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.service-visual {
    flex: 1 1 45%;
    background-color: #f0f0f0;
}

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

.service-info {
    flex: 1 1 50%;
}

.service-info h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

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

.service-description {
    margin-bottom: 40px;
}

.service-description p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.service-description h3 {
    font-size: 22px;
    font-weight: 400;
    margin: 30px 0 15px;
}

.service-description ul {
    list-style: none;
    padding-left: 0;
}

.service-description li {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.service-description li::before {
    content: "•";
    position: absolute;
    left: 0;
}

.btn-service {
    display: inline-block;
    padding: 18px 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #333;
    opacity: 1;
}

.service-benefits {
    padding: 100px 20px;
    background-color: #fafafa;
}

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

.benefits-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 70px;
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.benefit-item {
    flex: 1 1 45%;
}

.benefit-item h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-hero {
    padding: 120px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

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

.contact-hero h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 25px;
}

.contact-hero p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

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

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

.contact-details {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.detail-block h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.detail-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.detail-block .note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

.contact-map {
    flex: 1 1 400px;
    background-color: #f5f5f5;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.visit-section {
    padding: 100px 20px;
    background-color: #fafafa;
}

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

.visit-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
}

.visit-container p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.visit-list {
    list-style: none;
    padding-left: 0;
    margin: 30px 0 40px;
}

.visit-list li {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.visit-list li::before {
    content: "→";
    position: absolute;
    left: 0;
}

.btn-visit {
    display: inline-block;
    padding: 18px 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #1a1a1a;
    color: #ffffff;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.btn-visit:hover {
    background-color: #333;
    opacity: 1;
}

.faq-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.faq-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

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

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

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

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

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

.thanks-container h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 30px;
}

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 60px;
}

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

.order-summary {
    background-color: #f5f5f5;
    padding: 40px;
    margin: 0 auto 60px;
    max-width: 600px;
}

.order-summary h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 25px;
}

.order-summary p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    text-align: left;
}

.thanks-next h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 50px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.step {
    padding: 30px;
    background-color: #fafafa;
}

.step h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
}

.step p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

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

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #333;
    opacity: 1;
}

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

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    opacity: 1;
}

.thanks-info {
    padding: 100px 20px;
    background-color: #f5f5f5;
}

.info-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.info-container h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 30px;
}

.info-container p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 60px;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-container h4 {
    font-size: 18px;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-container ul {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-container li {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.legal-date {
    font-size: 14px;
    color: #888;
    margin-top: 60px;
    font-style: italic;
}

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

    .insight-wrapper,
    .trust-container,
    .story-block,
    .service-detail {
        flex-direction: column;
        gap: 50px;
    }

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

    .nav-minimal {
        gap: 25px;
        font-size: 13px;
    }

    .collections-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-minimal {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-title {
        font-size: 38px;
    }

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

    .story-lead {
        font-size: 24px;
    }

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

    .insight-content h2,
    .trust-content h2 {
        font-size: 32px;
    }

    .pricing-container h2 {
        font-size: 38px;
    }

    .form-container h2 {
        font-size: 36px;
    }

    .collections-grid,
    .pricing-grid,
    .team-grid,
    .benefits-grid {
        gap: 30px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .values-list {
        flex-direction: column;
    }

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