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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links li a {
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #c9a961;
}

.ad-label {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-visual {
    margin-top: 80px;
    height: 90vh;
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    padding: 40px;
}

.hero-title {
    font-size: 68px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 24px;
    color: #f5f5f5;
    font-weight: 300;
    max-width: 700px;
}

.story-intro {
    padding: 120px 40px;
    background: #fafafa;
}

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

.story-lead {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
}

.story-narrow p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.visual-card {
    display: flex;
    padding: 0;
    background: #ffffff;
}

.visual-card img {
    width: 55%;
    background-color: #e8e8e8;
}

.card-content {
    width: 45%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.problem-reveal {
    padding: 100px 40px;
    background: #2c2c2c;
    color: #ffffff;
}

.reveal-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.reveal-item {
    flex: 1;
}

.reveal-item p {
    font-size: 18px;
    line-height: 1.7;
}

.insight-visual {
    padding: 0;
}

.insight-split {
    display: flex;
}

.insight-text {
    width: 50%;
    padding: 100px 80px;
    background: #f8f8f8;
}

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

.insight-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.insight-split img {
    width: 50%;
    background-color: #d0d0d0;
}

.trust-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

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

.testimonials-flow {
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    padding: 40px;
    background: #f9f9f9;
    border-left: 4px solid #c9a961;
}

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

.testimonial-author {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.benefits-asymmetric {
    padding: 100px 40px;
    background: #fafafa;
}

.benefits-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-large {
    flex: 2;
    background: #ffffff;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.benefit-large img {
    width: 100%;
    height: 320px;
    background-color: #e0e0e0;
}

.benefit-large h3,
.benefit-large p {
    padding: 0 40px;
}

.benefit-large h3 {
    font-size: 28px;
    font-weight: 400;
    margin: 30px 0 15px;
}

.benefit-large p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
}

.benefit-small {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.benefit-small p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.collection-preview {
    padding: 100px 40px;
    background: #ffffff;
    text-align: center;
}

.collection-preview h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 70px;
}

.collection-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.collection-item {
    flex: 1;
}

.collection-item img {
    width: 100%;
    height: 280px;
    background-color: #e5e5e5;
    margin-bottom: 20px;
}

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

.collection-item p {
    font-size: 15px;
    color: #666;
}

.pricing-reveal {
    padding: 100px 40px;
    background: #1a1a1a;
    color: #ffffff;
}

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

.pricing-container h2 {
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 20px;
}

.pricing-intro {
    font-size: 18px;
    margin-bottom: 60px;
    color: #cccccc;
}

.pricing-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.price-card {
    flex: 1;
    min-width: 260px;
    background: #2a2a2a;
    padding: 40px 30px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.price-card:hover {
    transform: translateY(-8px);
}

.price-card.featured {
    background: #c9a961;
    color: #1a1a1a;
}

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

.price-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 60px;
}

.price {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
}

.select-service {
    background: #ffffff;
    color: #1a1a1a;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #f0f0f0;
}

.featured .select-service {
    background: #1a1a1a;
    color: #ffffff;
}

.featured .select-service:hover {
    background: #2a2a2a;
}

.form-section {
    padding: 100px 40px;
    background: #f5f5f5;
}

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

.form-container h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
}

.form-container > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

form {
    text-align: left;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #ffffff;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    background: #c9a961;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #b89751;
}

.footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 60px 40px 20px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #c9a961;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background: #252525;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 25px 40px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    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 {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-btn.accept:hover {
    background: #b89751;
}

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

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

.page-hero-simple {
    margin-top: 80px;
    padding: 100px 40px 60px;
    background: #f5f5f5;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-hero-simple p {
    font-size: 18px;
    color: #666;
}

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

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.about-content {
    flex: 2;
}

.about-lead {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-content img {
    width: 100%;
    margin: 40px 0;
    background-color: #e5e5e5;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin: 40px 0 25px;
}

.about-sidebar {
    flex: 1;
}

.about-fact {
    background: #f8f8f8;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 4px solid #c9a961;
}

.about-fact h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.about-fact p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.team-section {
    padding: 80px 40px;
    background: #fafafa;
    text-align: center;
}

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

.team-intro {
    font-size: 17px;
    color: #666;
    margin-bottom: 60px;
}

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

.team-member {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.member-role {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #c9a961;
}

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

.services-layout {
    padding: 60px 40px 80px;
}

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

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

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    background-color: #e5e5e5;
}

.service-details {
    flex: 1;
}

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

.service-details p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

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

.service-features li {
    padding: 8px 0;
    font-size: 15px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9a961;
    font-weight: bold;
}

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: #c9a961;
}

.cta-services {
    padding: 80px 40px;
    background: #1a1a1a;
    text-align: center;
    color: #ffffff;
}

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

.cta-services p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #cccccc;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    background: #c9a961;
    color: #ffffff;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #b89751;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 60px;
}

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

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

.contact-details {
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #c9a961;
}

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

.contact-note {
    background: #f8f8f8;
    padding: 30px;
    border-left: 4px solid #c9a961;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-note a {
    color: #c9a961;
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    background-color: #e5e5e5;
}

.thanks-section {
    margin-top: 80px;
    padding: 120px 40px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 46px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    color: #c9a961;
    margin-bottom: 20px;
    font-weight: 500;
}

.thanks-container p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.service-display {
    background: #f8f8f8;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #c9a961;
    font-size: 16px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: #b89751;
}

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

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

.legal-page {
    margin-top: 80px;
    padding: 60px 40px 80px;
}

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

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

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 50px;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 500;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 30px 0 15px;
    color: #333;
}

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

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

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #555;
}

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

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

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

    .visual-card,
    .insight-split,
    .service-full {
        flex-direction: column;
    }

    .visual-card img,
    .card-content,
    .insight-text,
    .insight-split img,
    .service-visual,
    .service-details {
        width: 100%;
    }

    .reveal-grid,
    .testimonials-flow,
    .collection-grid,
    .pricing-cards,
    .team-grid,
    .about-container,
    .contact-layout {
        flex-direction: column;
    }

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

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