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

:root {
--primary: #2C3E50;
--secondary: #8B7355;
--accent: #D4A574;
--light-bg: #F8F6F3;
--white: #FFFFFF;
--text: #333333;
}

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

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

.header {
background: var(--white);
padding: 12px 0;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
position: relative;
z-index: 100;
}

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

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

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

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

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

.nav-toggle {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
width: 30px;
height: 30px;
background: none;
border: none;
cursor: pointer;
padding: 0;
position: relative;
}

.nav-toggle span {
position: absolute;
width: 24px;
height: 3px;
background: var(--primary);
border-radius: 3px;
transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) {
top: 6px;
}

.nav-toggle span:nth-child(2) {
top: 50%;
transform: translateY(-50%);
}

.nav-toggle span:nth-child(3) {
bottom: 6px;
}

.nav-toggle.active span:nth-child(1) {
top: 50%;
transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
bottom: 50%;
transform: translateY(50%) rotate(-45deg);
}

.hero {
background: var(--light-bg);
padding: 0;
overflow: hidden;
}

.hero-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
min-height: 500px;
align-items: center;
gap: 40px;
padding: 0 15px;
}

.hero-text {
padding: 40px 0;
}

.hero-label {
display: inline-block;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--secondary);
font-weight: 600;
margin-bottom: 12px;
}

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

.hero-text p {
font-size: 15px;
color: var(--text);
margin-bottom: 24px;
line-height: 1.7;
max-width: 480px;
}

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

.btn {
display: inline-block;
padding: 10px 24px;
background: var(--primary);
color: var(--white);
text-decoration: none;
border-radius: 4px;
font-size: 13px;
font-weight: 600;
transition: background 0.3s;
border: none;
cursor: pointer;
}

.btn:hover {
background: var(--secondary);
}

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

.btn-light:hover {
background: var(--light-bg);
}

.btn-small {
padding: 8px 16px;
font-size: 12px;
}

.btn-outline {
display: inline-block;
padding: 10px 24px;
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
text-decoration: none;
border-radius: 4px;
font-size: 13px;
font-weight: 600;
transition: all 0.3s;
}

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

.hero-visual {
position: relative;
height: 100%;
min-height: 500px;
display: flex;
align-items: center;
justify-content: center;
}

.hero-card {
position: relative;
width: 100%;
max-width: 400px;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-card img {
width: 100%;
height: auto;
display: block;
}

.hero-badge {
position: absolute;
bottom: 20px;
right: 20px;
background: var(--white);
color: var(--primary);
padding: 8px 16px;
border-radius: 4px;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

section {
padding: 40px 0;
}

h2 {
font-size: 24px;
color: var(--primary);
margin-bottom: 16px;
font-weight: 700;
}

h3 {
font-size: 16px;
color: var(--primary);
margin-bottom: 8px;
font-weight: 600;
}

p {
margin-bottom: 12px;
font-size: 14px;
line-height: 1.7;
}

.story {
background: var(--white);
}

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

.story-image img {
width: 100%;
height: auto;
border-radius: 8px;
}

.story-text h2 {
margin-bottom: 20px;
}

.story-text p {
margin-bottom: 16px;
}

.values {
background: var(--light-bg);
}

.values h2 {
text-align: center;
margin-bottom: 30px;
}

.values-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}

.value-card {
background: var(--white);
padding: 24px;
border-radius: 8px;
text-align: center;
}

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

.value-card p {
font-size: 13px;
line-height: 1.6;
}

.collection {
background: var(--white);
}

.collection h2 {
text-align: center;
margin-bottom: 12px;
}

.section-intro {
text-align: center;
max-width: 700px;
margin: 0 auto 30px;
}

.products-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-bottom: 30px;
}

.product-card {
background: var(--light-bg);
border-radius: 8px;
overflow: hidden;
text-align: center;
transition: transform 0.3s;
}

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

.product-image {
width: 100%;
height: 280px;
overflow: hidden;
}

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

.product-card h3 {
padding: 16px 16px 8px;
}

.product-card p {
padding: 0 16px;
font-size: 13px;
margin-bottom: 12px;
line-height: 1.6;
}

.product-price {
font-size: 20px;
font-weight: 700;
color: var(--secondary);
padding: 8px 16px;
}

.product-card .btn-small {
margin: 0 16px 16px;
}

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

.craft-journey {
background: var(--light-bg);
text-align: center;
}

.journey-content {
max-width: 800px;
margin: 0 auto;
}

.journey-content p {
margin-bottom: 16px;
line-height: 1.8;
}

.journey-content .btn {
margin-top: 8px;
}

.materials-focus {
background: var(--white);
}

.materials-focus h2 {
text-align: center;
margin-bottom: 30px;
}

.materials-showcase {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}

.material-block {
background: var(--light-bg);
padding: 24px;
border-radius: 8px;
}

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

.material-block p {
font-size: 13px;
line-height: 1.7;
}

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

.testimonials h2 {
text-align: center;
margin-bottom: 30px;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}

.testimonial {
background: var(--light-bg);
padding: 24px;
border-radius: 8px;
}

.testimonial p {
font-style: italic;
margin-bottom: 12px;
font-size: 13px;
}

.testimonial-author {
font-weight: 600;
color: var(--secondary);
font-size: 12px;
}

.custom-work {
background: var(--primary);
color: var(--white);
padding: 50px 0;
}

.custom-grid {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 50px;
align-items: center;
}

.custom-text h2 {
color: var(--white);
margin-bottom: 16px;
}

.custom-text p {
color: var(--white);
margin-bottom: 16px;
line-height: 1.7;
}

.custom-info {
background: rgba(255,255,255,0.1);
padding: 24px;
border-radius: 8px;
}

.custom-info h3 {
color: var(--white);
margin-bottom: 12px;
font-size: 15px;
}

.custom-info p {
color: var(--white);
font-size: 13px;
margin-bottom: 6px;
}

.footer {
background: var(--primary);
color: rgba(255,255,255,0.8);
padding: 40px 0 20px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
margin-bottom: 30px;
}

.footer-col h4 {
color: var(--white);
margin-bottom: 12px;
font-size: 15px;
}

.footer-col p {
font-size: 13px;
color: rgba(255,255,255,0.8);
}

.footer-col a {
display: block;
color: rgba(255,255,255,0.8);
text-decoration: none;
font-size: 13px;
margin-bottom: 8px;
transition: color 0.3s;
}

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

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

.footer-bottom p {
font-size: 12px;
color: rgba(255,255,255,0.7);
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--primary);
color: var(--white);
padding: 16px;
z-index: 1000;
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;
}

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

.btn-accept {
padding: 8px 20px;
background: var(--secondary);
color: var(--white);
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 12px;
font-weight: 600;
white-space: nowrap;
}

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

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

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

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

.materials {
background: var(--light-bg);
text-align: center;
}

.materials-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 24px;
}

.material-item {
background: var(--white);
padding: 20px;
border-radius: 8px;
}

.custom-orders {
background: var(--white);
text-align: center;
}

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

.process-item {
margin-bottom: 40px;
}

.process-content {
max-width: 800px;
margin: 0 auto;
}

.process-number {
font-size: 48px;
font-weight: 700;
color: var(--accent);
margin-bottom: 12px;
}

.philosophy {
background: var(--light-bg);
text-align: center;
}

.philosophy p {
max-width: 800px;
margin: 0 auto 12px;
}

.contact-section {
background: var(--white);
}

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

.contact-details {
margin-top: 24px;
}

.contact-item {
margin-bottom: 20px;
}

.contact-item h3 {
font-size: 14px;
margin-bottom: 6px;
}

.contact-item p {
font-size: 13px;
}

.contact-form-wrapper h2 {
margin-bottom: 20px;
}

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

.form-group label {
display: block;
margin-bottom: 6px;
font-size: 13px;
font-weight: 600;
color: var(--primary);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 13px;
font-family: inherit;
}

.form-group textarea {
resize: vertical;
}

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

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

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

.map-section {
background: var(--light-bg);
}

.map-section h2 {
text-align: center;
margin-bottom: 24px;
}

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

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

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

.thankyou-icon {
width: 80px;
height: 80px;
background: var(--secondary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 48px;
margin: 0 auto 24px;
}

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

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

.error-content h2 {
font-size: 24px;
margin-bottom: 12px;
}

.thankyou-content p,
.error-content p {
font-size: 15px;
color: var(--text);
margin-bottom: 24px;
}

.policy-page {
background: var(--white);
padding: 40px 0;
}

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

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

.policy-content h2 {
margin-top: 30px;
margin-bottom: 12px;
font-size: 20px;
}

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

@media (max-width: 768px) {
.nav {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
height: calc(100vh - 60px);
background: var(--white);
flex-direction: column;
padding: 20px;
transition: left 0.3s;
box-shadow: 2px 0 8px rgba(0,0,0,0.1);
}

.nav.active {
left: 0;
}

.nav-toggle {
display: flex;
}

.hero-grid {
grid-template-columns: 1fr;
min-height: auto;
}

.hero-visual {
min-height: 400px;
order: -1;
}

.hero-text h1 {
font-size: 28px;
}

.hero-text p {
font-size: 14px;
}

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

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

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

.materials-showcase {
grid-template-columns: 1fr;
}

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

.footer-grid {
grid-template-columns: 1fr;
gap: 20px;
}

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

.materials-list {
grid-template-columns: 1fr;
}

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

.privacy-content {
flex-direction: column;
text-align: center;
}

h2 {
font-size: 20px;
}

.page-hero h1 {
font-size: 22px;
}
}

@media (max-width: 480px) {
.logo {
font-size: 14px;
}

.hero-grid {
padding: 0 15px;
}

.hero-visual {
min-height: 350px;
}

.hero-text h1 {
font-size: 24px;
}

.hero-text p {
font-size: 13px;
}

.hero-buttons {
flex-direction: column;
}

.hero-buttons .btn,
.hero-buttons .btn-outline {
width: 100%;
text-align: center;
}

section {
padding: 30px 0;
}

.product-image {
height: 220px;
}

.thankyou-content h1,
.error-content h2 {
font-size: 20px;
}

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

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

.logo {
font-size: 13px;
}

.hero-text h1 {
font-size: 20px;
}

.hero-text p {
font-size: 12px;
}

.hero-visual {
min-height: 300px;
}

h2 {
font-size: 18px;
}

h3 {
font-size: 15px;
}

.btn,
.btn-outline {
padding: 8px 16px;
font-size: 12px;
}

.product-image {
height: 200px;
}

.hero-badge {
font-size: 9px;
padding: 6px 12px;
}
}