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

:root {
--primary: #2d3436;
--secondary: #b8956a;
--accent: #6c5ce7;
--tertiary: #a29bfe;
--light: #faf9f7;
--dark: #1a1a1a;
--text: #2d3436;
--border: #e8e6e3;
--font-heading: 'Cormorant Garamond', serif;
--font-body: 'Outfit', sans-serif;
}

body {
font-family: var(--font-body);
color: var(--text);
line-height: 1.6;
font-size: 15px;
background: #fff;
}

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

h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 400;
line-height: 1.3;
}

h1 {
font-size: 2.5rem;
}

h2 {
font-size: 2rem;
}

h3 {
font-size: 1.5rem;
}

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: #fff;
padding: 15px 0;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.3s ease;
}

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

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

.privacy-content p {
margin: 0;
font-size: 14px;
flex: 1;
min-width: 200px;
}

.privacy-actions {
display: flex;
gap: 15px;
align-items: center;
}

.privacy-actions a {
color: var(--secondary);
font-size: 14px;
text-decoration: underline;
}

.privacy-actions button {
background: var(--secondary);
color: var(--dark);
border: none;
padding: 8px 20px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
border-radius: 3px;
}

.header {
background: #fff;
padding: 15px 0;
border-bottom: 1px solid var(--border);
position: relative;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-family: var(--font-heading);
font-size: 1.5rem;
font-weight: 600;
color: var(--primary);
}

.menu-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 5px;
z-index: 1000;
position: relative;
}

.menu-toggle span {
width: 25px;
height: 2px;
background: var(--primary);
margin: 3px 0;
transition: 0.3s;
}

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

.nav a {
color: var(--text);
font-size: 15px;
font-weight: 400;
position: relative;
}

.nav a:hover,
.nav a.active {
color: var(--secondary);
}

.hero {
position: relative;
min-height: 90vh;
display: flex;
align-items: center;
background: linear-gradient(135deg, var(--light) 0%, #fff 50%, var(--tertiary) 100%);
overflow: hidden;
padding: 40px 0;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(108, 92, 231, 0.1) 0%, transparent 50%);
pointer-events: none;
}

.hero-grid {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 1;
}

.hero-label {
display: inline-block;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--accent);
margin-bottom: 20px;
font-weight: 500;
}

.hero-text h1 {
font-size: 4rem;
line-height: 1.1;
margin-bottom: 25px;
color: var(--primary);
font-weight: 300;
}

.hero-text p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 35px;
color: var(--text);
max-width: 500px;
}

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

.btn-outline {
display: inline-block;
padding: 12px 30px;
font-size: 15px;
font-weight: 500;
border-radius: 3px;
transition: all 0.3s ease;
cursor: pointer;
border: 2px solid var(--primary);
background: transparent;
color: var(--primary);
}

.btn-outline:hover {
background: var(--primary);
color: #fff;
transform: translateY(-2px);
}

.hero-image {
position: relative;
}

.hero-image img {
width: 100%;
border-radius: 8px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.btn-primary,
.btn-secondary {
display: inline-block;
padding: 12px 30px;
font-size: 15px;
font-weight: 500;
border-radius: 3px;
transition: all 0.3s ease;
cursor: pointer;
border: none;
}

.btn-primary {
background: var(--secondary);
color: #fff;
}

.btn-primary:hover {
background: var(--accent);
transform: translateY(-2px);
}

.btn-secondary {
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
}

.btn-secondary:hover {
background: var(--primary);
color: #fff;
}

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

.philosophy {
padding: 80px 0;
background: #fff;
}

.philosophy-content {
text-align: center;
max-width: 700px;
margin: 0 auto 50px;
}

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

.philosophy-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
}

.philosophy-item h3 {
margin-bottom: 12px;
color: var(--primary);
font-size: 1.3rem;
}

.philosophy-item p {
line-height: 1.7;
}

.featured {
display: grid;
grid-template-columns: 1.2fr 1fr;
min-height: 600px;
}

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

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

.featured-content {
padding: 80px 60px;
background: var(--light);
display: flex;
flex-direction: column;
justify-content: center;
}

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

.featured-content p {
margin-bottom: 15px;
line-height: 1.7;
}

.featured-content .btn-secondary {
margin-top: 20px;
align-self: flex-start;
}

.process {
padding: 80px 0;
background: #fff;
}

.process h2 {
text-align: center;
margin-bottom: 60px;
color: var(--primary);
}

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

.process-step {
position: relative;
padding-top: 60px;
}

.step-number {
position: absolute;
top: 0;
left: 0;
font-size: 3rem;
font-weight: 300;
color: var(--tertiary);
font-family: var(--font-heading);
opacity: 0.5;
}

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

.process-step p {
line-height: 1.7;
font-size: 14px;
}

.visit {
padding: 80px 0;
background: var(--light);
}

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

.visit-text h2 {
margin-bottom: 20px;
color: var(--primary);
}

.visit-text p {
margin-bottom: 15px;
line-height: 1.7;
}

.visit-details {
margin: 30px 0;
padding: 25px;
background: #fff;
border-radius: 5px;
}

.visit-details p {
margin-bottom: 20px;
}

.visit-details p:last-child {
margin-bottom: 0;
}

.visit-image img {
width: 100%;
border-radius: 8px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.testimonials {
padding: 80px 0;
background: var(--light);
}

.testimonials h2 {
text-align: center;
margin-bottom: 60px;
color: var(--primary);
}

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

.testimonial-card {
background: #fff;
padding: 35px 30px;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
border-left: 3px solid var(--accent);
}

.testimonial-card p {
font-size: 15px;
margin-bottom: 20px;
line-height: 1.7;
font-style: italic;
color: var(--text);
}

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

.testimonial-author span {
font-size: 13px;
color: #666;
}



.footer {
background: var(--dark);
color: #fff;
padding: 30px 0 20px;
}

.footer-content {
text-align: center;
}

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

.footer-links a {
color: #ccc;
font-size: 13px;
}

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

.footer-bottom p {
font-size: 13px;
color: #999;
}

.page-hero {
background: var(--light);
padding: 50px 0;
text-align: center;
}

.page-hero h1 {
color: var(--primary);
margin-bottom: 10px;
}

.page-hero p {
font-size: 1.1rem;
color: var(--text);
}

.products {
padding: 60px 0;
}

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

.product-card {
border: 1px solid var(--border);
border-radius: 5px;
overflow: hidden;
transition: all 0.3s ease;
}

.product-card:hover {
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-image {
overflow: hidden;
}

.product-image img {
width: 100%;
transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
transform: scale(1.05);
}

.product-info {
padding: 25px;
}

.product-info h3 {
margin-bottom: 10px;
color: var(--primary);
}

.product-info p {
font-size: 14px;
margin-bottom: 15px;
}

.product-details {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px;
}

.product-price {
font-size: 1.3rem;
font-weight: 600;
color: var(--secondary);
}

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

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

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

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

.info-item p {
font-size: 14px;
}

.collections {
padding: 60px 0;
}

.collection-item {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
margin-bottom: 60px;
}

.collection-item.reverse {
direction: rtl;
}

.collection-item.reverse > * {
direction: ltr;
}

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

.collection-content p {
margin-bottom: 15px;
}

.collection-content .btn-secondary {
margin-top: 15px;
}

.collection-image img {
width: 100%;
border-radius: 5px;
}

.collection-features {
padding: 60px 0;
background: var(--light);
}

.collection-features h2 {
text-align: center;
margin-bottom: 40px;
color: var(--primary);
}

.feature-box {
text-align: center;
padding: 30px 20px;
}

.feature-box h3 {
margin-bottom: 10px;
color: var(--primary);
}

.feature-box p {
font-size: 14px;
}

.contact-section {
padding: 60px 0;
}

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

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

.contact-info > p {
margin-bottom: 30px;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 25px;
}

.contact-item {
display: flex;
gap: 15px;
}

.contact-item strong {
display: block;
color: var(--primary);
margin-bottom: 5px;
}

.contact-item p {
font-size: 14px;
margin: 0;
}

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

.contact-form-wrapper > p {
margin-bottom: 25px;
font-size: 14px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

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

.form-group label {
margin-bottom: 8px;
font-weight: 500;
color: var(--primary);
font-size: 14px;
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid var(--border);
border-radius: 3px;
font-family: var(--font-body);
font-size: 14px;
}

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

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

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

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

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

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

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

.map-wrapper {
border-radius: 5px;
overflow: hidden;
}

.thankyou-section,
.error-section {
padding: 80px 0;
text-align: center;
min-height: calc(100vh - 170px);
display: flex;
align-items: center;
}

.thankyou-content,
.error-content {
max-width: 600px;
margin: 0 auto;
}

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

.thankyou-content p,
.error-content p {
margin-bottom: 15px;
line-height: 1.7;
}

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

.error-number {
font-size: 8rem;
font-weight: 600;
color: var(--secondary);
font-family: var(--font-heading);
line-height: 1;
margin-bottom: 20px;
}

.policy-section {
padding: 60px 0;
}

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

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

.policy-date {
color: #666;
font-size: 14px;
margin-bottom: 30px;
}

.policy-content h2 {
color: var(--primary);
margin-top: 30px;
margin-bottom: 15px;
font-size: 1.5rem;
}

.policy-content h3 {
color: var(--primary);
margin-top: 20px;
margin-bottom: 10px;
font-size: 1.2rem;
}

.policy-content p {
margin-bottom: 15px;
}

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

.policy-content li {
margin-bottom: 8px;
}

@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.6rem;
}
h3 {
font-size: 1.3rem;
}
.menu-toggle {
display: flex;
}
.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #fff;
flex-direction: column;
gap: 0;
padding: 0;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
border-bottom: 1px solid var(--border);
z-index: 999;
}
.nav.active {
max-height: 300px;
}
.nav a {
padding: 15px 20px;
border-top: 1px solid var(--border);
}
.hero {
min-height: auto;
padding: 60px 0;
}
.hero-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.hero-text h1 {
font-size: 2.5rem;
}
.featured {
grid-template-columns: 1fr;
min-height: auto;
}
.featured-content {
padding: 50px 30px;
}
.visit-content,
.collection-item,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 30px;
}
.collection-item.reverse {
direction: ltr;
}
.products-grid {
grid-template-columns: 1fr;
}
.thankyou-actions,
.error-actions {
flex-direction: column;
}
.error-number {
font-size: 5rem;
}
}

@media (max-width: 480px) {
body {
font-size: 14px;
}
h1 {
font-size: 1.7rem;
}
h2 {
font-size: 1.4rem;
}
h3 {
font-size: 1.2rem;
}
.container {
padding: 0 15px;
}
.hero {
padding: 40px 0;
}
.hero-text h1 {
font-size: 2rem;
}
.philosophy,
.products,
.collections,
.contact-section,
.testimonials,
.process,
.visit {
padding: 50px 0;
}
.featured-content {
padding: 40px 20px;
}
.btn-primary,
.btn-secondary,
.btn-outline {
padding: 10px 20px;
font-size: 14px;
}
.philosophy-grid,
.testimonials-grid,
.process-grid {
grid-template-columns: 1fr;
}
.privacy-content {
flex-direction: column;
align-items: flex-start;
}
.privacy-actions {
width: 100%;
justify-content: space-between;
}
}

@media (max-width: 320px) {
body {
font-size: 13px;
}
h1 {
font-size: 1.5rem;
}
h2 {
font-size: 1.3rem;
}
h3 {
font-size: 1.1rem;
}
.logo {
font-size: 1.3rem;
}
.hero-text h1 {
font-size: 1.8rem;
}
.btn-primary,
.btn-secondary,
.btn-outline {
padding: 8px 16px;
font-size: 13px;
}
.step-number {
font-size: 2rem;
}
}

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

.cta-content h2 {
color: var(--primary);
margin-bottom: 15px;
}

.cta-content p {
margin-bottom: 25px;
font-size: 1.1rem;
}
