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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 10000;
    display: none;
}

.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;
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-accept {
    background: #6b4e71;
    color: #ffffff;
}

.btn-accept:hover {
    background: #563d5a;
}

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

.btn-reject:hover {
    background: #c8c8c8;
}

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 18px 0;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #6b4e71;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6b4e71;
}

.ad-notice {
    font-size: 12px;
    color: #888;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.hero-asymmetric {
    min-height: 85vh;
    background: #f5f1ed;
    position: relative;
    overflow: hidden;
}

.hero-offset-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 520px;
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #2c2c2c;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    transform: translateY(40px);
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e0d5d0;
}

.story-hook {
    padding: 120px 40px;
    background: #ffffff;
}

.offset-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.story-content {
    flex: 1.2;
    padding-right: 40px;
}

.story-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #2c2c2c;
    font-weight: 700;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.citation {
    color: #6b4e71;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #6b4e71;
}

.citation:hover {
    color: #563d5a;
}

.story-visual {
    flex: 0.8;
    position: relative;
    transform: translateY(-60px);
}

.story-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #d8c8c4;
}

.problem-amplification {
    padding: 100px 40px;
    background: #f9f6f3;
}

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

.problem-text {
    flex: 1.5;
}

.problem-text h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c2c2c;
    font-weight: 700;
}

.asymmetric-list {
    list-style: none;
}

.asymmetric-list li {
    font-size: 18px;
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
    color: #444;
}

.asymmetric-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6b4e71;
    font-weight: bold;
}

.problem-cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.cta-inline {
    display: inline-block;
    padding: 16px 36px;
    background: #6b4e71;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-inline:hover {
    background: #563d5a;
    transform: translateY(-2px);
}

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

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

.offset-container img {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ddd0cb;
}

.insight-overlay {
    flex: 1;
    padding-left: 40px;
}

.insight-overlay h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 700;
}

.insight-overlay p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #444;
    line-height: 1.7;
}

.trust-building {
    padding: 120px 40px;
    background: #f5f1ed;
}

.staggered-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
}

.trust-card.card-left {
    align-self: flex-start;
    margin-left: 0;
}

.trust-card.card-right {
    align-self: flex-end;
    margin-right: 0;
}

.trust-card.card-center {
    align-self: center;
}

.trust-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #6b4e71;
    font-weight: 700;
}

.trust-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 100px 40px;
    background: #ffffff;
}

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

.testimonial-asymmetric.reverse {
    flex-direction: row-reverse;
}

.testimonial-text {
    flex: 1.2;
}

.testimonial-text blockquote {
    font-size: 22px;
    line-height: 1.6;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-text cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.testimonial-image {
    flex: 0.8;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0d8d4;
}

.services-reveal {
    padding: 120px 40px;
    background: #f9f6f3;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 800;
}

.services-header p {
    font-size: 19px;
    color: #555;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 27px);
    min-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.service-card.offset-card {
    transform: translateY(30px);
}

.service-card.offset-card:hover {
    transform: translateY(24px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #ddd;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #2c2c2c;
    font-weight: 700;
}

.service-card p {
    margin: 0 24px 16px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 800;
    color: #6b4e71;
    margin: 20px 24px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #6b4e71;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #563d5a;
}

.form-container {
    padding: 100px 40px;
    background: #ffffff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f6f3;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 34px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 700;
    text-align: center;
}

.selected-service-display {
    text-align: center;
    font-size: 18px;
    color: #6b4e71;
    font-weight: 600;
    margin-bottom: 32px;
}

.asymmetric-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 16px;
    background: #6b4e71;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
    background: #563d5a;
    transform: translateY(-2px);
}

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

.ingredients-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.ingredients-layout h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #2c2c2c;
    font-weight: 700;
    text-align: center;
}

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

.ingredient-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #f9f6f3;
    border-radius: 8px;
}

.ingredient-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #6b4e71;
    font-weight: 700;
}

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

.footer-asymmetric {
    background: #2c2c2c;
    color: #ffffff;
    padding: 80px 40px 30px;
}

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

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

.footer-block ul,
.footer-block ol {
    list-style: none;
}

.footer-block ul li,
.footer-block ol li {
    margin-bottom: 10px;
}

.footer-block a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.references {
    font-size: 13px;
    line-height: 1.8;
}

.references li {
    margin-bottom: 8px;
}

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
}

.contact-main {
    padding: 80px 40px;
    background: #ffffff;
    min-height: 70vh;
}

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

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 800;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #6b4e71;
    font-weight: 700;
}

.contact-detail p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0d8d4;
}

.legal-page {
    padding: 80px 40px;
    background: #ffffff;
    min-height: 70vh;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 700;
}

.legal-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #444;
    line-height: 1.6;
}

.about-hero {
    padding: 100px 40px;
    background: #f5f1ed;
}

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

.about-intro h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 800;
}

.about-intro p {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
}

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

.about-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 700;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #444;
    line-height: 1.7;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0d8d4;
}

.services-page-hero {
    padding: 100px 40px;
    background: #f5f1ed;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 800;
}

.services-page-hero p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f6f3;
    padding: 60px 40px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #6b4e71;
    font-weight: 800;
}

.thanks-content p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.thanks-content .cta-inline {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .hero-offset-content,
    .offset-grid,
    .irregular-layout,
    .offset-container,
    .testimonial-asymmetric,
    .about-grid,
    .contact-layout {
        flex-direction: column;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .story-content h2,
    .problem-text h2,
    .insight-overlay h2,
    .about-text h2 {
        font-size: 28px;
    }

    .service-card {
        width: 100%;
    }

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