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

:root {
--primary: #2C5F4F;
--secondary: #8B7355;
--accent: #D4A574;
--dark: #1A1A1A;
--white: #FFFFFF;
--light: #F8F6F3;
--gray: #666666;
}

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(--white);
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
position: sticky;
top: 0;
z-index: 1000;
transform: translateY(0);
transition: transform 0.3s ease;
}

header.hidden {
transform: translateY(-100%);
}

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

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

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

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

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

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

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

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 22px;
cursor: pointer;
color: var(--dark);
}

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

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 800px;
padding: 40px 20px;
}

.hero-badge {
display: inline-block;
background: rgba(255,255,255,0.15);
color: var(--white);
padding: 6px 18px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 25px;
backdrop-filter: blur(10px);
}

.hero-modern h1 {
font-size: 48px;
color: var(--white);
margin-bottom: 20px;
font-weight: 700;
line-height: 1.2;
}

.hero-modern .highlight {
color: var(--accent);
display: block;
}

.hero-modern p {
font-size: 17px;
color: rgba(255,255,255,0.9);
margin-bottom: 35px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

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

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

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

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

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

.hero-scroll {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
color: var(--white);
font-size: 24px;
animation: bounce 2s infinite;
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateX(-50%) translateY(0);
}
40% {
transform: translateX(-50%) translateY(-10px);
}
60% {
transform: translateX(-50%) translateY(-5px);
}
}

.page-hero {
padding: 80px 15px;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
text-align: center;
position: relative;
}

.page-hero .hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-hero .container {
position: relative;
z-index: 2;
}

.hero-label {
display: inline-block;
background: rgba(255,255,255,0.15);
color: var(--white);
padding: 5px 16px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 15px;
backdrop-filter: blur(10px);
}

.page-hero h1 {
font-size: 38px;
color: var(--white);
margin-bottom: 12px;
}

.page-hero p {
font-size: 16px;
color: rgba(255,255,255,0.9);
max-width: 700px;
margin: 0 auto;
}

section {
padding: 60px 15px;
}

.section-label {
display: inline-block;
color: var(--primary);
font-size: 11px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 12px;
}

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

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

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

p {
margin-bottom: 15px;
color: var(--gray);
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: 450px;
object-fit: cover;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.offerings-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
margin-top: 30px;
}

.offering-card {
background: var(--white);
padding: 25px;
border-radius: 8px;
transition: transform 0.3s, box-shadow 0.3s;
}

.offering-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.offering-icon {
font-size: 28px;
color: var(--primary);
margin-bottom: 15px;
}

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

.journey-timeline {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 20px;
margin-top: 30px;
}

.journey-step {
position: relative;
padding: 20px;
background: var(--light);
border-radius: 8px;
}

.step-number {
display: inline-block;
background: var(--primary);
color: var(--white);
width: 40px;
height: 40px;
border-radius: 50%;
text-align: center;
line-height: 40px;
font-weight: 700;
margin-bottom: 15px;
font-size: 14px;
}

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

.materials-layout {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 50px;
align-items: start;
}

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

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

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

.voices-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
margin-top: 30px;
}

.voice-card {
background: var(--light);
padding: 25px;
border-radius: 8px;
}

.voice-card p {
font-style: italic;
margin-bottom: 20px;
}

.voice-author {
display: flex;
flex-direction: column;
gap: 3px;
}

.voice-author strong {
color: var(--dark);
font-size: 14px;
}

.voice-author span {
color: var(--gray);
font-size: 12px;
}

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

.showcase-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
margin-top: 30px;
}

.showcase-item {
background: var(--white);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.showcase-item img {
width: 100%;
height: 400px;
object-fit: cover;
}

.showcase-info {
padding: 25px;
}

.workshop-visit {
background: var(--white);
}

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

.visit-details {
display: grid;
gap: 20px;
margin-top: 25px;
}

.detail-item strong {
display: block;
color: var(--dark);
font-size: 14px;
margin-bottom: 5px;
}

.detail-item p {
font-size: 13px;
margin: 0;
}

.visit-map iframe {
border-radius: 8px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.commitment {
background: var(--primary);
color: var(--white);
text-align: center;
}

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

.commitment .section-label {
color: var(--accent);
}

.commitment h2 {
color: var(--white);
}

.commitment p {
color: rgba(255,255,255,0.9);
margin-bottom: 30px;
}

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

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

.content-image img {
width: 100%;
height: 420px;
object-fit: cover;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

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

.product-card {
background: var(--white);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image-wrap {
overflow: hidden;
}

.product-image-wrap img {
width: 100%;
height: 280px;
object-fit: cover;
transition: transform 0.3s;
}

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

.product-details {
padding: 20px;
}

.product-details h3 {
font-size: 18px;
margin-bottom: 10px;
}

.product-details p {
font-size: 13px;
margin-bottom: 15px;
}

.price {
display: block;
font-size: 24px;
font-weight: 700;
color: var(--primary);
margin-bottom: 15px;
}

.btn-product {
display: block;
text-align: center;
background: var(--primary);
color: var(--white);
padding: 10px;
text-decoration: none;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
transition: background 0.3s;
}

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

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

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

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

.feature-icon {
font-size: 32px;
color: var(--primary);
margin-bottom: 15px;
}

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

.inspiration p {
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.luxury-details {
background: var(--white);
}

.details-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
margin-top: 30px;
}

.detail-card {
background: var(--light);
padding: 25px;
border-radius: 8px;
}

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

.contact-intro {
background: var(--white);
text-align: center;
}

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

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

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 40px;
margin-top: 30px;
}

.contact-info {
background: var(--white);
padding: 30px;
border-radius: 8px;
}

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

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

.info-item p {
font-size: 13px;
margin-bottom: 5px;
}

.contact-form-wrapper {
background: var(--white);
padding: 30px;
border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 11px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 13px;
font-family: inherit;
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;
gap: 10px;
}

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

.checkbox-group label {
margin-bottom: 0;
font-weight: 400;
}

.submit-btn {
width: 100%;
padding: 13px;
background: var(--primary);
color: var(--white);
border: none;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}

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

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

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

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

.thankyou-page:before,
.error-page:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 600px;
position: relative;
z-index: 2;
}

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

.error-content h1 {
font-size: 80px;
color: var(--white);
margin-bottom: 10px;
}

.thankyou-content p,
.error-content p {
font-size: 16px;
margin-bottom: 30px;
color: rgba(255,255,255,0.9);
}

.policy-page {
background: var(--white);
padding: 50px 15px;
}

.policy-page h1 {
font-size: 36px;
margin-bottom: 12px;
}

.policy-page h2 {
font-size: 22px;
margin-top: 35px;
margin-bottom: 15px;
}

.policy-page h3 {
font-size: 17px;
margin-top: 25px;
margin-bottom: 10px;
}

.update-date {
font-size: 13px;
color: var(--gray);
margin-bottom: 35px;
}

footer {
background: var(--dark);
color: rgba(255,255,255,0.8);
padding: 50px 15px 25px;
}

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

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

.footer-col p {
font-size: 13px;
color: rgba(255,255,255,0.7);
margin-bottom: 8px;
}

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

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

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

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

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

.footer-links a {
font-size: 12px;
color: rgba(255,255,255,0.7);
text-decoration: none;
transition: color 0.3s;
}

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

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

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

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

.privacy-content p {
margin: 0;
font-size: 13px;
color: rgba(255,255,255,0.9);
}

.privacy-content button {
padding: 10px 24px;
background: var(--primary);
color: var(--white);
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
white-space: nowrap;
transition: background 0.3s;
}

.privacy-content button:hover {
background: var(--secondary);
}

@media (max-width: 1024px) {
.story-grid,
.content-layout,
.visit-content {
grid-template-columns: 1fr;
gap: 35px;
}

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

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

.journey-timeline {
grid-template-columns: repeat(3, 1fr);
}

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

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

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

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

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

@media (max-width: 768px) {
.main-nav {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.main-nav.active {
display: flex;
}

.main-nav a:after {
display: none;
}

.menu-toggle {
display: block;
}

.hero-modern {
min-height: 70vh;
}

.hero-modern h1 {
font-size: 34px;
}

.hero-modern p {
font-size: 15px;
}

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

h2 {
font-size: 26px;
}

.offerings-grid,
.voices-grid,
.products-grid,
.features-grid,
.showcase-grid {
grid-template-columns: 1fr;
}

.journey-timeline {
grid-template-columns: 1fr;
}

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

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

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

.story-image img,
.content-image img {
height: 350px;
}

.showcase-item img {
height: 300px;
}
}

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

.logo {
font-size: 15px;
}

.hero-modern {
min-height: 65vh;
}

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

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

.hero-badge,
.hero-label {
font-size: 10px;
padding: 5px 14px;
}

.page-hero {
padding: 60px 15px;
}

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

section {
padding: 45px 15px;
}

h2 {
font-size: 22px;
}

h3 {
font-size: 17px;
}

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

.offering-card,
.voice-card,
.feature-item,
.detail-card {
padding: 20px;
}

.product-image-wrap img {
height: 240px;
}

.story-image img,
.content-image img {
height: 280px;
}

.showcase-item img {
height: 250px;
}
}

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

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

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

h2 {
font-size: 20px;
}

section {
padding: 35px 15px;
}

.offering-card,
.voice-card,
.feature-item {
padding: 18px;
}

.product-details {
padding: 18px;
}
}
