/* Reset and Base Styles */
* {
    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.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

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

a:hover {
    opacity: 0.7;
}

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

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 20px;
    font-size: 11px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 14px;
}

.nav-links a {
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8b7355;
    opacity: 1;
}

/* Hero Visual Section */
.hero-visual {
    margin-top: 100px;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #d4c4b0;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 60px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.95;
}

/* Intro Story Section */
.intro-story {
    padding: 120px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.story-container {
    text-align: center;
}

.opening-line {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.4;
    color: #1a1a1a;
}

.story-container p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Problem Amplification Section */
.problem-amplification {
    padding: 100px 20px;
    background-color: #fff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.3;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #555;
    line-height: 1.7;
}

.split-image {
    flex: 1;
    background-color: #e8ddd0;
}

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

/* Insight Reveal Section */
.insight-reveal {
    padding: 120px 20px;
    background-color: #f5f1ed;
}

.centered-insight {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.centered-insight h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 35px;
}

.centered-insight > p {
    font-size: 18px;
    margin-bottom: 60px;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.insight-cards {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.insight-card {
    flex: 1;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 4px;
}

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

.insight-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Trust Building Section */
.trust-building {
    padding: 100px 20px;
}

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

.trust-container img {
    width: 45%;
    height: 450px;
    object-fit: cover;
    background-color: #d8cec0;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 28px;
}

.trust-text p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #555;
    line-height: 1.7;
}

/* Testimonials Inline Section */
.testimonials-inline {
    padding: 100px 20px;
    background-color: #2c2c2c;
    color: #fff;
}

.testimonial-flow {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial-item {
    flex: 1;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

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

/* Collection Reveal Section */
.collection-reveal {
    padding: 120px 20px;
}

.collection-header {
    text-align: center;
    margin-bottom: 70px;
}

.collection-header h2 {
    font-size: 44px;
    font-weight: 300;
    margin-bottom: 15px;
}

.collection-header p {
    font-size: 18px;
    color: #666;
}

.collection-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.perfume-card {
    width: calc(33.333% - 27px);
    background-color: #fff;
    overflow: hidden;
}

.card-image-wrapper {
    width: 100%;
    height: 400px;
    background-color: #e5dcd0;
    overflow: hidden;
}

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

.card-content {
    padding: 30px;
}

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

.perfume-notes {
    font-size: 13px;
    color: #888;
    margin-bottom: 18px;
    font-style: italic;
}

.perfume-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.perfume-price {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #8b7355;
}

.select-service-btn {
    width: 100%;
    padding: 14px 0;
    background-color: #2c2c2c;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #1a1a1a;
}

/* Order Form Section */
.order-form-section {
    padding: 100px 20px;
    background-color: #f8f6f3;
}

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

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

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.order-form {
    background-color: #fff;
    padding: 50px;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #666;
}

.submit-btn {
    width: 100%;
    padding: 16px 0;
    background-color: #2c2c2c;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

/* Ingredients Section */
.ingredients-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

.ingredients-container h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
}

.ingredients-container p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

.ingredients-container a {
    color: #8b7355;
    text-decoration: underline;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 50px 20px;
    background-color: #f9f7f5;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

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

.disclaimer-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    padding: 80px 20px 30px;
    background-color: #2c2c2c;
    color: #fff;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-column ul li a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-references h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-references p {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.7;
    margin-bottom: 8px;
}

.footer-references a {
    text-decoration: underline;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 25px 20px;
    z-index: 9999;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #8b7355;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #6f5d46;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.reject:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

/* Thanks Page */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
}

.thanks-container {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #8b7355;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

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

.thanks-message {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.thanks-service {
    font-size: 16px;
    color: #8b7355;
    font-weight: 500;
    margin-bottom: 40px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2c2c2c;
    color: #fff;
}

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

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

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #fff;
    opacity: 1;
}

/* About Page */
.about-hero {
    margin-top: 100px;
    padding: 120px 20px;
    text-align: center;
    background-color: #f5f1ed;
}

.about-hero-content h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
}

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

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

.story-text-block {
    flex: 1;
}

.story-text-block h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
}

.story-text-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 22px;
}

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

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

.about-philosophy {
    padding: 100px 20px;
    background-color: #fff;
}

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

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

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

.philosophy-item {
    width: calc(50% - 20px);
    padding: 35px;
    background-color: #f9f7f5;
}

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

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

.about-process {
    padding: 100px 20px;
    background-color: #f5f1ed;
}

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

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.process-step {
    width: calc(33.333% - 24px);
}

.step-number {
    font-size: 48px;
    font-weight: 200;
    color: #8b7355;
    margin-bottom: 15px;
}

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

.process-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

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

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

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

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

.team-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #d8cec0;
}

.about-cta {
    padding: 100px 20px;
    background-color: #2c2c2c;
    text-align: center;
    color: #fff;
}

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

.cta-container p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 16px 50px;
    background-color: #8b7355;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #6f5d46;
    opacity: 1;
}

/* Services Page */
.services-hero {
    margin-top: 100px;
    padding: 100px 20px;
    text-align: center;
    background-color: #f8f6f3;
}

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

.services-intro {
    font-size: 19px;
    color: #666;
}

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

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

.service-detailed {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}

.service-detailed:last-child {
    margin-bottom: 0;
}

.service-image-large {
    width: 45%;
    background-color: #e5dcd0;
}

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

.service-info {
    flex: 1;
}

.service-type {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-info h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 25px;
}

.notes-breakdown {
    margin: 30px 0;
    padding: 25px;
    background-color: #f9f7f5;
}

.note-layer {
    margin-bottom: 15px;
}

.note-layer:last-child {
    margin-bottom: 0;
}

.note-layer h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    color: #8b7355;
}

.note-layer p {
    font-size: 15px;
    color: #666;
}

.service-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-longevity {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 25px;
}

.services-guide {
    padding: 100px 20px;
    background-color: #f5f1ed;
}

.guide-container {
    max-width: 1000px;
    margin: 0 auto;
}

.guide-container h2 {
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 50px;
}

.guide-tips {
    display: flex;
    gap: 40px;
}

.tip-item {
    flex: 1;
    padding: 30px;
    background-color: #fff;
}

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

.tip-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Contact Page */
.contact-hero {
    margin-top: 100px;
    padding: 100px 20px;
    text-align: center;
    background-color: #f8f6f3;
}

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

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

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

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

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

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

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

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

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

.contact-image-block {
    flex: 1;
    background-color: #e0d5c7;
}

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

.contact-faq {
    padding: 100px 20px;
    background-color: #f8f6f3;
}

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

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

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

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

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

/* Legal Pages */
.legal-page {
    margin-top: 100px;
    padding: 80px 20px;
    min-height: 60vh;
}

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

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

.legal-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

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

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

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

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .split-content,
    .trust-container,
    .story-layout,
    .contact-layout,
    .service-detailed {
        flex-direction: column;
    }

    .split-image,
    .trust-container img,
    .story-image-block,
    .contact-image-block,
    .service-image-large {
        width: 100%;
    }

    .service-detailed:nth-child(even) {
        flex-direction: column;
    }

    .collection-grid {
        gap: 30px;
    }

    .perfume-card {
        width: calc(50% - 15px);
    }

    .insight-cards {
        flex-direction: column;
    }

    .testimonial-flow {
        flex-direction: column;
    }

    .philosophy-item,
    .process-step {
        width: 100%;
    }

    .guide-tips {
        flex-direction: column;
    }
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .hero-overlay {
        left: 30px;
        right: 30px;
        bottom: 40px;
    }

    .perfume-card {
        width: 100%;
    }

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

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

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