:root {
--blush: #f5e6e0;
--blush-dark: #e8d5cd;
--cream: #faf7f5;
--charcoal: #2c2c2c;
--soft-gray: #8a8a8a;
--light-gray: #e5e5e5;
--accent: #d4a59a;
}

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

html {
scroll-behavior: smooth;
}

body {
font-family: "Montserrat", sans-serif;
background: var(--cream);
color: var(--charcoal);
overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
.display {
font-family: "Cormorant Garamond", serif;
font-weight: 300;
letter-spacing: -0.02em;
}

/* Navigation */
nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 1.5rem 4rem;
display: flex;
justify-content: space-between;
align-items: center;
background: rgba(250, 247, 245, 0.85);
backdrop-filter: blur(20px);
transition: all 0.4s ease;
}

nav.scrolled {
padding: 1rem 4rem;
background: rgba(250, 247, 245, 0.95);
}

.logo {
font-family: "Cormorant Garamond", serif;
font-size: 1.8rem;
font-weight: 400;
letter-spacing: 0.3em;
color: var(--charcoal);
text-decoration: none;
}

.nav-links {
display: flex;
gap: 3rem;
list-style: none;
}

.nav-links a {
text-decoration: none;
color: var(--charcoal);
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.15em;
text-transform: uppercase;
position: relative;
transition: color 0.3s ease;
}

.nav-links a::after {
content: "";
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 1px;
background: var(--accent);
transition: width 0.3s ease;
}

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

.nav-cta {
padding: 0.75rem 1.5rem;
background: var(--charcoal);
color: var(--cream) !important;
font-size: 0.7rem;
letter-spacing: 0.15em;
text-transform: uppercase;
border: none;
cursor: pointer;
transition: all 0.3s ease;
}

.nav-cta:hover {
background: var(--accent);
}

/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
padding: 0 4rem;
position: relative;
overflow: hidden;
}

.hero-content {
flex: 1;
max-width: 600px;
z-index: 2;
animation: fadeInUp 1s ease-out;
}

.hero-tag {
font-size: 0.7rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 1.5rem;
display: block;
}

.hero h1 {
font-size: clamp(3rem, 6vw, 5rem);
line-height: 1.1;
margin-bottom: 1.5rem;
font-weight: 300;
}

.hero h1 em {
font-style: italic;
color: var(--accent);
}

.hero p {
font-size: 1rem;
line-height: 1.8;
color: var(--soft-gray);
margin-bottom: 2.5rem;
max-width: 450px;
}

.hero-cta {
display: inline-flex;
align-items: center;
gap: 1rem;
padding: 1.2rem 2.5rem;
background: var(--charcoal);
color: var(--cream);
text-decoration: none;
font-size: 0.75rem;
letter-spacing: 0.2em;
text-transform: uppercase;
transition: all 0.4s ease;
}

.hero-cta:hover {
background: var(--accent);
gap: 1.5rem;
}

.hero-cta svg {
width: 16px;
height: 16px;
transition: transform 0.3s ease;
}

.hero-cta:hover svg {
transform: translateX(4px);
}

.hero-image {
flex: 1;
height: 85vh;
position: relative;
animation: fadeIn 1.2s ease-out 0.3s both;
}

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

.hero-image::before {
content: "";
position: absolute;
top: -30px;
right: -30px;
width: 100%;
height: 100%;
border: 1px solid var(--blush-dark);
z-index: -1;
animation: fadeIn 1.5s ease-out 0.5s both;
}

/* Marquee */
.marquee {
background: var(--blush);
padding: 1.5rem 0;
overflow: hidden;
white-space: nowrap;
}

.marquee-content {
display: inline-flex;
animation: marquee 30s linear infinite;
}

.marquee-item {
font-size: 0.75rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--charcoal);
padding: 0 3rem;
display: flex;
align-items: center;
gap: 1rem;
}

.marquee-item::after {
content: "✦";
color: var(--accent);
}

/* Philosophy Section */
.philosophy {
padding: 10rem 4rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6rem;
align-items: center;
max-width: 1400px;
margin: 0 auto;
}

.philosophy-image {
position: relative;
overflow: hidden;
}

.philosophy-image img {
width: 100%;
height: 600px;
object-fit: cover;
transition: transform 0.8s ease;
}

.philosophy-image:hover img {
transform: scale(1.03);
}

.philosophy-content h2 {
font-size: clamp(2rem, 4vw, 3rem);
margin-bottom: 2rem;
line-height: 1.2;
}

.philosophy-content h2 em {
font-style: italic;
color: var(--accent);
}

.philosophy-content p {
font-size: 1rem;
line-height: 2;
color: var(--soft-gray);
margin-bottom: 1.5rem;
}

.stats {
display: flex;
gap: 4rem;
margin-top: 3rem;
padding-top: 3rem;
border-top: 1px solid var(--light-gray);
}

.stat h3 {
font-size: 2.5rem;
font-weight: 300;
color: var(--charcoal);
margin-bottom: 0.5rem;
}

.stat span {
font-size: 0.7rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--soft-gray);
}

/* Products Section */
.products {
padding: 8rem 4rem;
background: var(--blush);
}

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

.section-header h2 {
font-size: clamp(2rem, 4vw, 3rem);
margin-bottom: 1rem;
}

.section-header p {
color: var(--soft-gray);
font-size: 0.9rem;
letter-spacing: 0.1em;
}

.products-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 3rem;
max-width: 1200px;
margin: 0 auto;
}

.product-card {
background: var(--cream);
padding: 3rem 2rem;
text-align: center;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}

.product-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: var(--accent);
transform: scaleX(0);
transition: transform 0.4s ease;
}

.product-card:hover::before {
transform: scaleX(1);
}

.product-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.product-icon {
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
background: var(--blush);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
}

.product-card h3 {
font-size: 1.5rem;
margin-bottom: 0.75rem;
}

.product-card .price {
font-size: 0.85rem;
color: var(--accent);
letter-spacing: 0.1em;
margin-bottom: 1rem;
}

.product-card p {
font-size: 0.85rem;
color: var(--soft-gray);
line-height: 1.7;
margin-bottom: 1.5rem;
}

.product-btn {
padding: 0.75rem 1.5rem;
border: 1px solid var(--charcoal);
background: transparent;
color: var(--charcoal);
font-size: 0.7rem;
letter-spacing: 0.15em;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease;
}

.product-btn:hover {
background: var(--charcoal);
color: var(--cream);
}

/* Ingredients Section */
.ingredients {
padding: 10rem 4rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6rem;
align-items: center;
max-width: 1400px;
margin: 0 auto;
}

.ingredients-content {
order: 2;
}

.ingredients-image {
order: 1;
position: relative;
}

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

.ingredients-content h2 {
font-size: clamp(2rem, 4vw, 3rem);
margin-bottom: 2rem;
}

.ingredients-content h2 em {
font-style: italic;
color: var(--accent);
}

.ingredients-content p {
font-size: 1rem;
line-height: 2;
color: var(--soft-gray);
margin-bottom: 2rem;
}

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

.ingredient-list li {
padding: 1rem 0;
border-bottom: 1px solid var(--light-gray);
display: flex;
align-items: center;
gap: 1rem;
font-size: 0.9rem;
}

.ingredient-list li::before {
content: "✦";
color: var(--accent);
}

/* Testimonials */
.testimonials {
padding: 8rem 4rem;
background: var(--charcoal);
color: var(--cream);
text-align: center;
}

.testimonials h2 {
font-size: clamp(2rem, 4vw, 3rem);
margin-bottom: 4rem;
}

.testimonial-slider {
max-width: 800px;
margin: 0 auto;
}

.testimonial {
font-family: "Cormorant Garamond", serif;
font-size: clamp(1.5rem, 3vw, 2rem);
font-style: italic;
line-height: 1.6;
margin-bottom: 2rem;
font-weight: 300;
}

.testimonial-author {
font-size: 0.75rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--accent);
}

/* Newsletter */
.newsletter {
padding: 8rem 4rem;
text-align: center;
background: var(--blush);
}

.newsletter h2 {
font-size: clamp(2rem, 4vw, 3rem);
margin-bottom: 1rem;
}

.newsletter p {
color: var(--soft-gray);
margin-bottom: 2.5rem;
}

.newsletter-form {
display: flex;
justify-content: center;
gap: 1rem;
max-width: 500px;
margin: 0 auto;
}

.newsletter-form input {
flex: 1;
padding: 1rem 1.5rem;
border: 1px solid var(--light-gray);
background: var(--cream);
font-family: "Montserrat", sans-serif;
font-size: 0.9rem;
outline: none;
transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
border-color: var(--accent);
}

.newsletter-form button {
padding: 1rem 2rem;
background: var(--charcoal);
color: var(--cream);
border: none;
font-size: 0.75rem;
letter-spacing: 0.15em;
text-transform: uppercase;
cursor: pointer;
transition: background 0.3s ease;
}

.newsletter-form button:hover {
background: var(--accent);
}

/* Footer */
footer {
padding: 4rem;
background: var(--cream);
border-top: 1px solid var(--light-gray);
}

.footer-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 4rem;
}

.footer-brand .logo {
margin-bottom: 1rem;
display: inline-block;
}

.footer-brand p {
font-size: 0.85rem;
color: var(--soft-gray);
line-height: 1.8;
max-width: 300px;
}

.footer-col h4 {
font-size: 0.7rem;
letter-spacing: 0.2em;
text-transform: uppercase;
margin-bottom: 1.5rem;
font-weight: 600;
}

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

.footer-col li {
margin-bottom: 0.75rem;
}

.footer-col a {
text-decoration: none;
color: var(--soft-gray);
font-size: 0.85rem;
transition: color 0.3s ease;
}

.footer-col a:hover {
color: var(--accent);
}

.footer-bottom {
max-width: 1400px;
margin: 4rem auto 0;
padding-top: 2rem;
border-top: 1px solid var(--light-gray);
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.75rem;
color: var(--soft-gray);
}

/* Animations */
@keyframes fadeIn {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}

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

@keyframes marquee {
0% {
    transform: translateX(0);
}
100% {
    transform: translateX(-50%);
}
}

/* Scroll Reveal */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s ease;
}

.reveal.active {
opacity: 1;
transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
.philosophy,
.ingredients {
    grid-template-columns: 1fr;
    gap: 3rem;
}

.ingredients-content {
    order: 1;
}

.ingredients-image {
    order: 2;
}

.products-grid {
    grid-template-columns: repeat(2, 1fr);
}

.footer-content {
    grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 768px) {
nav {
    padding: 1rem 2rem;
}

.nav-links {
    display: none;
}

.hero {
    flex-direction: column;
    padding: 8rem 2rem 4rem;
}

.hero-image {
    height: 50vh;
    width: 100%;
    margin-top: 3rem;
}

.philosophy,
.ingredients,
.products,
.testimonials,
.newsletter {
    padding: 4rem 2rem;
}

.products-grid {
    grid-template-columns: 1fr;
}

.stats {
    flex-direction: column;
    gap: 2rem;
}

.newsletter-form {
    flex-direction: column;
}

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