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

:root {
--primary: #c44569;
--secondary: #6a9a5a;
--accent: #2d3142;
--light: #fef9f3;
}

body {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
line-height: 1.6;
color: var(--accent);
background: var(--light);
}

h1, h2, h3, h4 {
font-family: 'Cormorant Garamond', serif;
font-weight: 600;
line-height: 1.3;
}

h1 {
font-size: 2.5rem;
}

h2 {
font-size: 2rem;
}

h3 {
font-size: 1.4rem;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--accent);
color: white;
padding: 12px 20px;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.3s ease;
}

.privacy-popup.show {
transform: translateY(0);
}

.privacy-content {
display: flex;
align-items: center;
gap: 20px;
max-width: 1200px;
flex-wrap: wrap;
justify-content: center;
}

.privacy-content p {
margin: 0;
font-size: 13px;
}

#acceptPrivacy {
background: var(--primary);
color: white;
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 13px;
font-weight: 500;
transition: background 0.3s;
}

#acceptPrivacy:hover {
background: #a83a56;
}

.header {
background: white;
padding: 12px 0;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
position: relative;
transition: transform 0.3s ease;
}

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

.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.4rem;
font-weight: 600;
color: var(--primary);
}

.menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
flex-direction: column;
gap: 4px;
}

.menu-toggle span {
width: 24px;
height: 2px;
background: var(--accent);
transition: 0.3s;
}

.nav {
display: flex;
gap: 25px;
}

.nav a {
text-decoration: none;
color: var(--accent);
font-size: 14px;
font-weight: 400;
transition: color 0.3s;
position: relative;
}

.nav a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--primary);
transition: width 0.3s;
}

.nav a:hover {
color: var(--primary);
}

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

.hero-mega {
min-height: 90vh;
background: linear-gradient(135deg, #fef9f3 0%, #f5e6e8 100%);
position: relative;
overflow: hidden;
display: flex;
align-items: center;
padding: 80px 20px 60px;
}

.hero-shape {
position: absolute;
top: -10%;
right: -5%;
width: 60%;
height: 120%;
background: linear-gradient(135deg, rgba(196,69,105,0.08), rgba(106,154,90,0.08));
border-radius: 50% 0 0 50%;
transform: rotate(-5deg);
}

.hero-overlay {
max-width: 1200px;
margin: 0 auto;
width: 100%;
position: relative;
z-index: 2;
}

.hero-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
align-items: center;
}

.hero-label {
display: inline-block;
background: var(--primary);
color: white;
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 500;
margin-bottom: 20px;
letter-spacing: 0.5px;
}

.hero-text h1 {
font-size: 3.5rem;
margin-bottom: 20px;
color: var(--accent);
line-height: 1.1;
}

.hero-text p {
font-size: 1.05rem;
color: #5a5a5a;
margin-bottom: 30px;
line-height: 1.7;
}

.hero-buttons {
display: flex;
gap: 15px;
margin-bottom: 40px;
flex-wrap: wrap;
}

.btn-primary {
display: inline-block;
background: var(--primary);
color: white;
padding: 14px 32px;
text-decoration: none;
border-radius: 6px;
font-weight: 500;
font-size: 14px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

.btn-primary:hover {
background: #a83a56;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(196,69,105,0.3);
}

.btn-outline {
display: inline-block;
background: transparent;
color: var(--accent);
padding: 14px 32px;
text-decoration: none;
border-radius: 6px;
font-weight: 500;
font-size: 14px;
border: 2px solid var(--accent);
transition: all 0.3s;
}

.btn-outline:hover {
background: var(--accent);
color: white;
}

.btn-secondary {
display: inline-block;
background: var(--secondary);
color: white;
padding: 14px 32px;
text-decoration: none;
border-radius: 6px;
font-weight: 500;
font-size: 14px;
transition: all 0.3s;
}

.btn-secondary:hover {
background: #5a8a4a;
transform: translateY(-2px);
}

.hero-stats {
display: flex;
gap: 40px;
}

.stat-item {
display: flex;
flex-direction: column;
}

.stat-item strong {
font-size: 1.8rem;
color: var(--primary);
font-family: 'Cormorant Garamond', serif;
}

.stat-item span {
font-size: 12px;
color: #7a7a7a;
}

.hero-image {
position: relative;
}

.image-frame {
position: relative;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.image-frame::before {
content: '';
position: absolute;
top: -10px;
left: -10px;
right: 10px;
bottom: 10px;
border: 3px solid var(--primary);
border-radius: 12px;
z-index: -1;
}

.image-frame img {
width: 100%;
height: auto;
display: block;
}

.section-label {
display: inline-block;
color: var(--primary);
font-size: 13px;
font-weight: 500;
letter-spacing: 1px;
margin-bottom: 10px;
text-transform: uppercase;
}

.section-header {
text-align: center;
margin-bottom: 50px;
}

.section-header h2 {
color: var(--accent);
}

.why-choose {
padding: 70px 0;
background: white;
}

.why-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}

.why-card {
padding: 30px;
background: var(--light);
border-radius: 8px;
transition: transform 0.3s;
}

.why-card:hover {
transform: translateY(-5px);
}

.why-icon {
font-size: 2.5rem;
margin-bottom: 15px;
}

.why-card h3 {
margin-bottom: 12px;
color: var(--accent);
}

.why-card p {
font-size: 13px;
color: #6a6a6a;
line-height: 1.7;
}

.signature-collection {
padding: 70px 0;
background: var(--light);
}

.collection-split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
align-items: center;
}

.collection-image-side img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.collection-content-side h2 {
margin-bottom: 20px;
color: var(--accent);
}

.collection-content-side p {
margin-bottom: 15px;
color: #5a5a5a;
line-height: 1.7;
}

.feature-list {
list-style: none;
margin: 25px 0;
}

.feature-list li {
padding: 8px 0;
color: #5a5a5a;
font-size: 14px;
}

.feature-list li::before {
content: '✓ ';
color: var(--secondary);
font-weight: bold;
margin-right: 8px;
}

.about-story {
padding: 70px 0;
background: white;
}

.story-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
align-items: center;
}

.story-content h2 {
margin-bottom: 20px;
color: var(--accent);
}

.story-content p {
margin-bottom: 15px;
color: #5a5a5a;
line-height: 1.7;
}

.story-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.services-overview {
padding: 70px 0;
background: var(--light);
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}

.service-box {
background: white;
padding: 30px;
border-radius: 8px;
border-left: 4px solid var(--primary);
transition: transform 0.3s;
}

.service-box:hover {
transform: translateX(5px);
}

.service-box h3 {
margin-bottom: 12px;
color: var(--accent);
}

.service-box p {
font-size: 13px;
color: #6a6a6a;
margin-bottom: 15px;
line-height: 1.7;
}

.link-arrow {
color: var(--primary);
text-decoration: none;
font-weight: 500;
font-size: 14px;
transition: gap 0.3s;
}

.link-arrow:hover {
text-decoration: underline;
}

.testimonials-modern {
padding: 70px 0;
background: white;
}

.testimonial-slider {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.testimonial-modern {
background: var(--light);
padding: 30px;
border-radius: 8px;
position: relative;
}

.testimonial-modern p {
font-size: 14px;
color: #5a5a5a;
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
}

.testimonial-author strong {
display: block;
color: var(--accent);
font-size: 14px;
margin-bottom: 3px;
}

.testimonial-author span {
font-size: 12px;
color: #7a7a7a;
}

.process-section {
padding: 70px 0;
background: var(--light);
}

.event-services {
padding: 70px 0;
background: var(--light);
}

.event-services h2 {
text-align: center;
margin-bottom: 40px;
color: var(--accent);
}

.event-highlights {
padding: 70px 0;
background: white;
}

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

.highlights-content p {
margin-bottom: 15px;
color: #5a5a5a;
line-height: 1.7;
font-size: 14px;
}

.event-process {
padding: 70px 0;
background: var(--light);
}

.event-process h2 {
text-align: center;
margin-bottom: 40px;
color: var(--accent);
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
}

.process-step {
text-align: center;
padding: 20px;
}

.step-number {
width: 50px;
height: 50px;
background: var(--primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
font-weight: 600;
margin: 0 auto 15px;
}

.process-step h3 {
margin-bottom: 10px;
color: var(--accent);
}

.process-step p {
font-size: 13px;
color: #6a6a6a;
line-height: 1.7;
}

.process-section {
padding: 70px 0;
background: var(--light);
}

.process-timeline {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 30px;
}

.timeline-item {
text-align: center;
padding: 25px;
}

.timeline-number {
width: 60px;
height: 60px;
background: var(--primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 600;
margin: 0 auto 20px;
font-family: 'Cormorant Garamond', serif;
}

.timeline-item h3 {
margin-bottom: 10px;
color: var(--accent);
}

.timeline-item p {
font-size: 13px;
color: #6a6a6a;
line-height: 1.7;
}

.contact-cta {
padding: 70px 20px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.cta-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
color: white;
}

.cta-text h2 {
margin-bottom: 15px;
color: white;
}

.cta-text p {
font-size: 1.05rem;
margin-bottom: 30px;
opacity: 0.95;
}

.cta-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.cta-actions .btn-primary {
background: white;
color: var(--primary);
}

.cta-actions .btn-primary:hover {
background: var(--light);
}

.cta-actions .btn-outline {
border-color: white;
color: white;
}

.cta-actions .btn-outline:hover {
background: white;
color: var(--primary);
}

.page-hero-modern {
background: linear-gradient(135deg, rgba(196,69,105,0.9), rgba(106,154,90,0.9));
padding: 80px 20px;
text-align: center;
color: white;
}

.hero-content-center {
max-width: 700px;
margin: 0 auto;
}

.hero-content-center .hero-label {
background: white;
color: var(--primary);
}

.hero-content-center h1 {
margin-bottom: 15px;
color: white;
}

.hero-content-center p {
font-size: 1.05rem;
opacity: 0.95;
}

.products-showcase {
padding: 70px 0;
background: var(--light);
}

.product-featured {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
margin-bottom: 80px;
align-items: center;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
padding: 0 20px;
}

.product-featured.reverse {
direction: rtl;
}

.product-featured.reverse > * {
direction: ltr;
}

.product-visual img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-tag {
display: inline-block;
background: var(--secondary);
color: white;
padding: 5px 14px;
border-radius: 20px;
font-size: 11px;
font-weight: 500;
margin-bottom: 15px;
letter-spacing: 0.5px;
}

.product-details h2 {
margin-bottom: 20px;
color: var(--accent);
}

.product-details p {
margin-bottom: 15px;
color: #5a5a5a;
line-height: 1.7;
font-size: 14px;
}

.product-features {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}

.product-features span {
font-size: 13px;
color: #6a6a6a;
}

.product-price {
font-size: 2rem;
font-weight: 600;
color: var(--primary);
margin-bottom: 20px;
font-family: 'Cormorant Garamond', serif;
}

.collection-benefits {
padding: 70px 0;
background: white;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}

.benefit-card {
padding: 30px;
background: var(--light);
border-radius: 8px;
text-align: center;
}

.benefit-icon {
font-size: 2.5rem;
margin-bottom: 15px;
}

.benefit-card h3 {
margin-bottom: 12px;
color: var(--accent);
}

.benefit-card p {
font-size: 13px;
color: #6a6a6a;
line-height: 1.7;
}

.contact-hero {
background: linear-gradient(135deg, rgba(196,69,105,0.9), rgba(106,154,90,0.9));
padding: 60px 20px;
text-align: center;
color: white;
}

.contact-hero h1 {
margin-bottom: 10px;
color: white;
}

.contact-hero p {
font-size: 1.05rem;
}

.contact-section {
padding: 70px 0;
background: var(--light);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 50px;
}

.contact-info h2 {
margin-bottom: 30px;
color: var(--accent);
}

.info-item {
display: flex;
gap: 15px;
margin-bottom: 25px;
align-items: flex-start;
}

.info-item-icon {
width: 40px;
height: 40px;
background: var(--primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
font-size: 1.1rem;
}

.info-item h4 {
margin-bottom: 5px;
color: var(--accent);
}

.info-item p {
font-size: 13px;
color: #6a6a6a;
line-height: 1.6;
}

.contact-form-wrapper h2 {
margin-bottom: 25px;
color: var(--accent);
}

.contact-form {
background: white;
padding: 35px;
border-radius: 12px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
color: var(--accent);
font-size: 13px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 6px;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
}

.form-group textarea {
resize: vertical;
}

.checkbox-group {
display: flex;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
font-size: 13px;
}

.checkbox-label input[type="checkbox"] {
width: auto;
margin-top: 3px;
cursor: pointer;
}

.checkbox-label a {
color: var(--primary);
text-decoration: underline;
}

.map-section {
padding: 70px 0;
background: white;
}

.map-section h2 {
text-align: center;
margin-bottom: 30px;
color: var(--accent);
}

.map-container {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.thankyou-section,
.error-section {
min-height: calc(100vh - 160px);
display: flex;
align-items: center;
justify-content: center;
padding: 60px 20px;
background: var(--light);
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 600px;
}

.success-icon {
width: 80px;
height: 80px;
background: var(--secondary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
font-weight: bold;
margin: 0 auto 20px;
}

.thankyou-content h1,
.error-content h1 {
margin-bottom: 15px;
color: var(--accent);
}

.thankyou-content p,
.error-content p {
margin-bottom: 30px;
color: #6a6a6a;
font-size: 1.05rem;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.error-number {
font-size: 6rem;
font-weight: 600;
color: var(--primary);
margin-bottom: 20px;
font-family: 'Cormorant Garamond', serif;
}

.policy-section {
padding: 60px 0;
background: var(--light);
}

.policy-section h1 {
margin-bottom: 10px;
color: var(--accent);
}

.policy-date {
color: #7a7a7a;
font-size: 13px;
margin-bottom: 30px;
}

.policy-content {
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.policy-content h2 {
margin-top: 30px;
margin-bottom: 15px;
color: var(--accent);
}

.policy-content h3 {
margin-top: 20px;
margin-bottom: 10px;
color: var(--accent);
}

.policy-content p {
margin-bottom: 15px;
color: #6a6a6a;
font-size: 14px;
line-height: 1.7;
}

.policy-content ul {
margin-bottom: 15px;
padding-left: 25px;
}

.policy-content li {
margin-bottom: 8px;
color: #6a6a6a;
font-size: 14px;
line-height: 1.7;
}

.footer {
background: var(--accent);
color: white;
padding: 25px 0;
}

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

.footer-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 15px;
}

.footer-links a {
color: white;
text-decoration: none;
font-size: 12px;
transition: color 0.3s;
}

.footer-links a:hover {
color: var(--primary);
}

.footer-copy {
font-size: 12px;
color: #b0b0b0;
}

@media (max-width: 768px) {
.menu-toggle {
display: flex;
z-index: 1001;
}

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: 0 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
gap: 0;
z-index: 1000;
}

.nav.active {
max-height: 400px;
padding: 20px;
gap: 15px;
}

.hero-mega {
min-height: auto;
padding: 60px 20px 40px;
}

.hero-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-text h1 {
font-size: 2.2rem;
}

.hero-stats {
gap: 25px;
}

h1 {
font-size: 2rem;
}

h2 {
font-size: 1.6rem;
}

.collection-split,
.story-grid,
.contact-wrapper,
.product-featured {
grid-template-columns: 1fr;
gap: 40px;
}

.product-featured.reverse {
direction: ltr;
}

.policy-content {
padding: 25px;
}

.footer-links {
flex-direction: column;
gap: 10px;
}
}

@media (max-width: 480px) {
body {
font-size: 13px;
}

.hero-mega {
padding: 50px 15px 30px;
}

.hero-text h1 {
font-size: 1.8rem;
}

.hero-text p {
font-size: 0.95rem;
}

h1 {
font-size: 1.7rem;
}

h2 {
font-size: 1.4rem;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 12px 24px;
font-size: 13px;
}

.hero-buttons,
.cta-actions {
flex-direction: column;
}

.hero-buttons a,
.cta-actions a {
width: 100%;
text-align: center;
}

.why-grid,
.services-grid,
.benefits-grid,
.process-timeline,
.testimonial-slider {
grid-template-columns: 1fr;
}

.contact-form {
padding: 25px;
}

.policy-content {
padding: 20px;
}

.error-number {
font-size: 4rem;
}
}

@media (max-width: 320px) {
.container {
padding: 0 15px;
}

.hero-text h1 {
font-size: 1.6rem;
}

.stat-item strong {
font-size: 1.5rem;
}

.product-price {
font-size: 1.7rem;
}
}
