/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sage-green: #8B9D8A;
    --golden: #D4AF37;
    --cream: #FAF9F6;
    --white: #FFFFFF;
    --dark-sage: #6B7A6A;
    --light-sage: #A5B5A4;
    --warm-cream: #F5F3F0;
    --text-dark: #3A3A3A;
    --text-light: #666666;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Nunito Sans', sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(139, 157, 138, 0.1);
    --shadow-medium: 0 8px 30px rgba(139, 157, 138, 0.15);
    --shadow-strong: 0 12px 40px rgba(139, 157, 138, 0.2);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(250, 249, 246, 0.98);
    box-shadow: var(--shadow-soft);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--sage-green);
    letter-spacing: 2px;
}

.logo-dot {
    color: var(--golden);
    font-size: 1.2rem;
    vertical-align: middle;
}

.brand-dot {
    color: var(--golden);
    font-size: clamp(1.8rem, 4vw, 3rem);
    vertical-align: middle;
    line-height: 1;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--golden);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--sage-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--sage-green);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-cream) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 157, 138, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
    75% { transform: translateY(-30px) rotate(0.5deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    margin-bottom: 1rem;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 500;
    color: var(--sage-green);
    letter-spacing: 4px;
    display: inline-block;
    vertical-align: middle;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-philosophy {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--golden);
    font-style: italic;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-signup {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.email-signup {
    display: flex;
    max-width: 500px;
    margin: 0 auto 1rem;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.email-signup input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
}

.email-signup input::placeholder {
    color: var(--text-light);
}

.email-signup button {
    padding: 1rem 2rem;
    background: var(--sage-green);
    color: var(--white);
    border: none;
    font-family: var(--font-sans);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.email-signup button:hover {
    background: var(--dark-sage);
    transform: translateY(-2px);
}

.signup-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--sage-green);
    border-bottom: 2px solid var(--sage-green);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--sage-green);
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--golden);
    margin: 0 auto 1rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Philosophy Section */
.philosophy {
    background: var(--white);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-text h3 {
    color: var(--sage-green);
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.philosophy-image {
    position: relative;
}

.philosophy-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.philosophy-hero-image:hover {
    transform: scale(1.02);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-sage) 0%, var(--sage-green) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.image-overlay span {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--sage-green);
}

/* Products Section */
.products {
    background: var(--warm-cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.product-image {
    margin-bottom: 1.5rem;
}

.product-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-sage) 100%);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon {
    font-size: 2rem;
}

.product-card h3 {
    color: var(--sage-green);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-price {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--golden);
    font-weight: 500;
}

/* Ritual Section */
.ritual {
    background: var(--white);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ingredient-card {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.ingredient-card:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.ingredient-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.ingredient-card h3 {
    color: var(--sage-green);
    margin-bottom: 1rem;
}

.ingredient-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* What's Inside Section */
.whats-inside {
    padding: 6rem 0;
    background: var(--dawn-pearl);
}

.whats-inside-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.packaging-photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.packaging-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.ingredients-text h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--sage-green);
    margin-bottom: 1.5rem;
}

.ingredients-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ingredient-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ingredient-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.ingredient-point .ingredient-icon {
    font-size: 1.5rem;
}

/* Enhanced Ritual Section */
.ritual {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.ritual-background-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/background-texture-dawn-dots.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: 1;
}

.ritual .container {
    position: relative;
    z-index: 2;
}

.ritual-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.ritual-lifestyle-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.ritual-story .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.ritual-description {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ritual-quote {
    padding: 2rem;
    background: var(--golden);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: none;
}

.ritual-quote em {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #FFFFFF !important;
    font-style: italic;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-subtitle-large {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--sage-green);
    text-align: center;
    margin-bottom: 3rem;
}

/* Newsletter Section */
.newsletter {
    background: var(--sage-green);
    color: var(--white);
}

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

.newsletter h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--text-dark);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--golden);
    color: var(--white);
    border: none;
    font-family: var(--font-sans);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background: #B8941F;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    color: var(--golden);
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--sage-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--golden);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .philosophy-hero-image {
        height: 300px;
    }

    .whats-inside-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .packaging-photo {
        height: 350px;
        order: -1;
    }

    .ritual-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ritual-lifestyle-image {
        height: 350px;
        order: -1;
    }

    .ritual-story .section-title {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .email-signup,
    .newsletter-form {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .email-signup button,
    .newsletter-form button {
        border-radius: 0 0 15px 15px;
    }
    
    .email-signup input,
    .newsletter-form input {
        border-radius: 15px 15px 0 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .products-grid,
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card,
    .ingredient-card {
        padding: 1.5rem;
    }
}

/* Smooth Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}