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

:root {
--primary: #6B4E71;
--secondary: #C9A9C9;
--accent: #F5EFF5;
--dark: #2D1F2F;
--light: #FFFFFF;
--gray: #5A5A5A;
--border: #E0D5E0;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--dark);
font-size: 14px;
}

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

.header {
background: var(--light);
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
position: relative;
z-index: 1000;
}

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

.logo {
font-size: 18px;
font-weight: 700;
color: var(--primary);
letter-spacing: -0.5px;
}

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

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

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

.nav a {
text-decoration: none;
color: var(--dark);
font-size: 13px;
font-weight: 500;
transition: color 0.3s;
padding: 5px 0;
}

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

.hero-modern {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.hero-content {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
padding: 60px 0;
}

.hero-text h1 {
font-size: 42px;
line-height: 1.2;
color: var(--light);
margin-bottom: 20px;
font-weight: 700;
}

.hero-text p {
font-size: 17px;
color: rgba(255,255,255,0.9);
margin-bottom: 30px;
line-height: 1.7;
}

.btn-hero {
display: inline-block;
background: var(--light);
color: var(--primary);
padding: 14px 32px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-hero:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-visual {
position: relative;
height: 400px;
}

.hero-card {
position: absolute;
width: 200px;
height: 250px;
background: var(--light);
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.card-1 {
top: 0;
left: 0;
transform: rotate(-8deg);
background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
}

.card-2 {
top: 50px;
left: 80px;
transform: rotate(5deg);
background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.8));
z-index: 2;
}

.card-3 {
top: 100px;
left: 160px;
transform: rotate(-3deg);
background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.75));
}

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

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

.intro-content h2 {
font-size: 32px;
margin-bottom: 25px;
color: var(--primary);
}

.intro-content p {
font-size: 15px;
line-height: 1.8;
color: var(--gray);
margin-bottom: 15px;
}

section {
padding: 50px 0;
}

h2 {
font-size: 32px;
margin-bottom: 20px;
color: var(--dark);
text-align: center;
font-weight: 700;
}

h3 {
font-size: 19px;
margin-bottom: 10px;
color: var(--dark);
font-weight: 600;
}

.section-intro {
text-align: center;
max-width: 800px;
margin: 0 auto 40px;
font-size: 15px;
color: var(--gray);
}

.services {
background: var(--accent);
}

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

.service-card {
background: var(--light);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
transition: transform 0.3s;
}

.service-card:hover {
transform: translateY(-8px);
}

.service-image {
width: 100%;
height: 240px;
overflow: hidden;
background: var(--secondary);
}

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

.service-card h3,
.service-card p {
padding: 0 25px;
}

.service-card h3 {
margin-top: 20px;
}

.service-card p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
padding-bottom: 25px;
}

.philosophy {
background: var(--light);
}

.philosophy-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 50px;
align-items: start;
}

.philosophy-text h2 {
text-align: left;
margin-bottom: 25px;
}

.philosophy-text p {
font-size: 14px;
line-height: 1.8;
color: var(--gray);
margin-bottom: 18px;
}

.philosophy-features {
display: grid;
gap: 20px;
}

.feature-item {
background: var(--accent);
padding: 20px;
border-radius: 8px;
border-left: 4px solid var(--primary);
}

.feature-item h3 {
font-size: 16px;
margin-bottom: 8px;
}

.feature-item p {
font-size: 13px;
color: var(--gray);
line-height: 1.6;
}

.process {
background: var(--accent);
}

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

.timeline-item {
text-align: center;
padding: 25px;
background: var(--light);
border-radius: 10px;
}

.timeline-number {
display: inline-block;
width: 60px;
height: 60px;
background: var(--primary);
color: var(--light);
border-radius: 50%;
line-height: 60px;
font-size: 24px;
font-weight: 700;
margin-bottom: 15px;
}

.timeline-item h3 {
margin-bottom: 12px;
font-size: 17px;
}

.timeline-item p {
font-size: 13px;
color: var(--gray);
line-height: 1.7;
}

.showcase {
background: var(--light);
}

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

.showcase-item {
padding: 25px;
background: var(--accent);
border-radius: 10px;
transition: all 0.3s;
}

.showcase-item:hover {
background: var(--light);
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.showcase-item h3 {
margin-bottom: 12px;
color: var(--primary);
font-size: 17px;
}

.showcase-item p {
font-size: 13px;
color: var(--gray);
line-height: 1.7;
}

.testimonials {
background: var(--accent);
}

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

.testimonial {
background: var(--light);
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial p {
font-size: 14px;
line-height: 1.8;
color: var(--gray);
font-style: italic;
margin-bottom: 15px;
}

.testimonial span {
display: block;
font-weight: 600;
font-style: normal;
color: var(--primary);
font-size: 13px;
}

.materials {
background: var(--light);
}

.materials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
margin-top: 40px;
}

.material-item {
padding: 25px;
border: 2px solid var(--border);
border-radius: 10px;
transition: all 0.3s;
}

.material-item:hover {
border-color: var(--primary);
background: var(--accent);
}

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

.material-item p {
font-size: 13px;
color: var(--gray);
line-height: 1.7;
}

.occasions {
background: var(--accent);
padding: 50px 0;
}

.occasions-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px;
margin-top: 30px;
}

.occasion-tag {
background: var(--light);
color: var(--primary);
padding: 10px 20px;
border-radius: 25px;
font-size: 13px;
font-weight: 500;
border: 2px solid var(--primary);
transition: all 0.3s;
}

.occasion-tag:hover {
background: var(--primary);
color: var(--light);
}

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

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

.cta-content h2 {
color: var(--light);
font-size: 36px;
margin-bottom: 20px;
}

.cta-content p {
font-size: 16px;
margin-bottom: 30px;
opacity: 0.95;
line-height: 1.7;
}

.btn-cta {
display: inline-block;
background: var(--light);
color: var(--primary);
padding: 14px 35px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
}

.btn-cta:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.page-hero {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--light);
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
font-size: 36px;
margin-bottom: 12px;
font-weight: 700;
}

.page-hero p {
font-size: 16px;
opacity: 0.95;
}

.content-section {
padding: 50px 0;
background: var(--light);
}

.content-section h2 {
margin-bottom: 25px;
}

.content-section p {
max-width: 900px;
margin: 0 auto 18px;
text-align: center;
font-size: 14px;
line-height: 1.8;
color: var(--gray);
}

.products {
background: var(--accent);
}

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

.product-card {
background: var(--light);
padding: 30px;
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
transition: transform 0.3s;
}

.product-card:hover {
transform: translateY(-8px);
}

.product-card h3 {
margin-bottom: 15px;
color: var(--primary);
font-size: 20px;
}

.product-card p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
margin-bottom: 15px;
}

.price {
font-size: 28px;
font-weight: 700;
color: var(--primary);
margin: 20px 0;
display: block;
}

.product-card .btn {
background: var(--primary);
color: var(--light);
padding: 12px 28px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 13px;
display: inline-block;
transition: all 0.3s;
}

.product-card .btn:hover {
background: var(--dark);
}

.benefits {
background: var(--light);
}

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

.benefit-item {
padding: 25px;
background: var(--accent);
border-radius: 10px;
}

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

.benefit-item p {
font-size: 13px;
color: var(--gray);
line-height: 1.7;
}

.design-options {
background: var(--accent);
}

.options-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
margin-top: 40px;
}

.option-card {
background: var(--light);
padding: 25px;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.option-card p {
font-size: 13px;
color: var(--gray);
line-height: 1.7;
}

.process-detail {
background: var(--light);
}

.process-detail h2 {
margin-bottom: 25px;
}

.process-detail p {
max-width: 900px;
margin: 0 auto 18px;
text-align: center;
font-size: 14px;
line-height: 1.8;
color: var(--gray);
}

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

.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 40px;
margin-top: 40px;
}

.contact-info,
.contact-form-wrapper {
background: var(--accent);
padding: 30px;
border-radius: 12px;
}

.info-item {
margin-bottom: 25px;
}

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

.info-item p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

.contact-form-wrapper h2 {
text-align: left;
font-size: 26px;
margin-bottom: 12px;
}

.contact-form-wrapper > p {
font-size: 14px;
color: var(--gray);
margin-bottom: 25px;
}

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

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
font-size: 13px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 2px solid var(--border);
border-radius: 6px;
font-size: 14px;
font-family: inherit;
background: var(--light);
}

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

.checkbox-group label {
display: flex;
align-items: flex-start;
gap: 10px;
font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
width: auto;
margin-top: 4px;
}

.contact-form button {
width: 100%;
background: var(--primary);
color: var(--light);
padding: 14px;
border: none;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}

.contact-form button:hover {
background: var(--dark);
}

.map-section {
padding: 50px 0;
background: var(--accent);
}

.map-wrapper {
margin-top: 25px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.footer {
background: var(--dark);
color: var(--light);
padding: 40px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-bottom: 30px;
}

.footer-section h4 {
font-size: 17px;
margin-bottom: 15px;
color: var(--secondary);
}

.footer-section p,
.footer-section a {
font-size: 13px;
color: var(--light);
line-height: 1.9;
opacity: 0.9;
}

.footer-section a {
display: block;
text-decoration: none;
margin-bottom: 8px;
transition: opacity 0.3s;
}

.footer-section a:hover {
opacity: 1;
color: var(--secondary);
}

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

.footer-bottom p {
font-size: 12px;
margin-bottom: 12px;
opacity: 0.8;
}

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

.footer-links a {
font-size: 11px;
color: var(--light);
text-decoration: none;
opacity: 0.8;
transition: opacity 0.3s;
}

.footer-links a:hover {
opacity: 1;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--light);
padding: 18px;
z-index: 9999;
box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
display: none;
}

.privacy-popup.show {
display: block;
}

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

.privacy-content p {
font-size: 13px;
flex: 1;
min-width: 250px;
}

.privacy-buttons {
display: flex;
gap: 12px;
}

.privacy-buttons a,
.privacy-buttons button {
padding: 10px 22px;
font-size: 12px;
border-radius: 6px;
text-decoration: none;
cursor: pointer;
transition: all 0.3s;
}

.privacy-buttons a {
background: transparent;
color: var(--light);
border: 2px solid var(--light);
}

.privacy-buttons button {
background: var(--primary);
color: var(--light);
border: none;
font-weight: 600;
}

.privacy-buttons button:hover {
background: var(--secondary);
color: var(--dark);
}

.policy-page {
padding: 50px 0;
background: var(--light);
}

.policy-page .container {
max-width: 900px;
}

.policy-page h1 {
font-size: 34px;
margin-bottom: 12px;
color: var(--primary);
}

.update-date {
font-size: 12px;
color: var(--gray);
margin-bottom: 30px;
font-style: italic;
}

.policy-page h2 {
font-size: 22px;
margin-top: 35px;
margin-bottom: 15px;
text-align: left;
color: var(--primary);
}

.policy-page h3 {
font-size: 17px;
margin-top: 25px;
margin-bottom: 12px;
color: var(--dark);
}

.policy-page p {
font-size: 14px;
line-height: 1.8;
margin-bottom: 16px;
color: var(--gray);
}

.thankyou-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary), var(--secondary));
padding: 20px;
}

.thankyou-content,
.error-content {
background: var(--light);
padding: 50px;
border-radius: 16px;
text-align: center;
max-width: 600px;
box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.thankyou-content h1,
.error-content h1 {
font-size: 36px;
color: var(--primary);
margin-bottom: 18px;
}

.error-content h1 {
font-size: 72px;
}

.error-content h2 {
font-size: 26px;
margin-bottom: 18px;
}

.thankyou-content p,
.error-content p {
font-size: 15px;
color: var(--gray);
margin-bottom: 16px;
line-height: 1.7;
}

.thankyou-content .btn-hero,
.error-content .btn-hero {
margin-top: 20px;
}

@media (max-width: 968px) {
.hero-content {
grid-template-columns: 1fr;
gap: 40px;
}
.hero-visual {
display: none;
}
.philosophy-grid {
grid-template-columns: 1fr;
gap: 40px;
}
}

@media (max-width: 768px) {
.menu-toggle {
display: flex;
}
.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--light);
flex-direction: column;
padding: 15px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
display: none;
}
.nav.active {
display: flex;
}
.hero-modern {
min-height: 70vh;
}
.hero-text h1 {
font-size: 32px;
}
.hero-text p {
font-size: 15px;
}
h2 {
font-size: 26px;
}
.intro-content h2 {
font-size: 26px;
}
.services-grid,
.showcase-grid,
.testimonials-grid,
.products-grid,
.benefits-grid,
.options-grid,
.materials-grid {
grid-template-columns: 1fr;
}
.process-timeline {
grid-template-columns: 1fr;
}
.contact-grid {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr;
text-align: center;
}
.footer-links {
flex-direction: column;
gap: 10px;
}
.privacy-content {
flex-direction: column;
text-align: center;
}
.privacy-buttons {
width: 100%;
justify-content: center;
}
}

@media (max-width: 480px) {
.logo {
font-size: 16px;
}
.hero-modern {
min-height: 60vh;
padding: 30px 0;
}
.hero-text h1 {
font-size: 26px;
}
.hero-text p {
font-size: 14px;
}
.btn-hero,
.btn-cta {
padding: 12px 26px;
font-size: 13px;
}
section {
padding: 40px 0;
}
h2 {
font-size: 22px;
}
h3 {
font-size: 17px;
}
.intro-content h2 {
font-size: 22px;
}
.page-hero h1 {
font-size: 28px;
}
.cta-content h2 {
font-size: 28px;
}
.thankyou-content,
.error-content {
padding: 35px 25px;
}
.thankyou-content h1 {
font-size: 28px;
}
.error-content h1 {
font-size: 56px;
}
.error-content h2 {
font-size: 22px;
}
.service-card,
.showcase-item,
.testimonial,
.product-card,
.benefit-item,
.option-card,
.material-item {
padding: 20px;
}
.contact-info,
.contact-form-wrapper {
padding: 25px;
}
}

@media (max-width: 360px) {
.container {
padding: 0 12px;
}
.logo {
font-size: 14px;
}
.hero-text h1 {
font-size: 22px;
}
h2 {
font-size: 20px;
}
.intro-content h2 {
font-size: 20px;
}
.btn-hero,
.btn-cta {
padding: 10px 22px;
font-size: 12px;
}
}

@media (max-width: 320px) {
.hero-text h1 {
font-size: 20px;
}
h2 {
font-size: 18px;
}
.intro-content h2 {
font-size: 18px;
}
section {
padding: 35px 0;
}
}
