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

:root {
--primary: #8B4513;
--secondary: #D2691E;
--accent: #CD853F;
--dark: #3E2723;
--light: #F5F5DC;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
font-size: 14px;
}

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

header {
background: var(--dark);
padding: 15px 0;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
font-size: 18px;
font-weight: 700;
color: var(--light);
}

nav ul {
list-style: none;
display: flex;
gap: 25px;
flex-wrap: wrap;
}

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

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

.mega-hero {
position: relative;
min-height: 85vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
color: var(--light);
overflow: hidden;
padding: 60px 20px 40px;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(210,105,30,0.2) 0%, transparent 50%);
pointer-events: none;
}

.hero-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 900px;
margin: 0 auto;
}

.hero-badge {
display: inline-block;
background: rgba(245,245,220,0.15);
padding: 8px 20px;
border-radius: 30px;
font-size: 12px;
margin-bottom: 25px;
border: 1px solid rgba(245,245,220,0.3);
}

.mega-hero h1 {
font-size: 56px;
font-weight: 800;
margin-bottom: 25px;
line-height: 1.1;
letter-spacing: -1px;
}

.mega-hero p {
font-size: 18px;
margin-bottom: 35px;
opacity: 0.95;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

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

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

.btn-hero:hover {
background: var(--accent);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

.btn-hero-outline:hover {
background: var(--light);
color: var(--dark);
}

.hero-stats {
display: flex;
gap: 50px;
justify-content: center;
flex-wrap: wrap;
position: relative;
z-index: 2;
}

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

.stat-number {
display: block;
font-size: 36px;
font-weight: 800;
color: var(--accent);
margin-bottom: 5px;
}

.stat-label {
display: block;
font-size: 12px;
opacity: 0.9;
}

.page-hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
color: var(--light);
padding: 50px 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;
}

.btn {
display: inline-block;
background: var(--secondary);
color: var(--light);
padding: 11px 26px;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
font-size: 13px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

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

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

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

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

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

section {
padding: 50px 0;
}

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

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

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

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

.intro-content p {
font-size: 16px;
margin-bottom: 20px;
line-height: 1.8;
}

.featured-work {
background: #fff;
}

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

.work-item img {
width: 100%;
height: auto;
border-radius: 8px;
margin-bottom: 15px;
}

.work-details h3 {
margin-bottom: 10px;
}

.work-details p {
line-height: 1.7;
}

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

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

.craft-item {
text-align: center;
padding: 25px;
background: #fff;
border-radius: 8px;
}

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

.process-timeline {
background: #fff;
}

.timeline {
max-width: 800px;
margin: 40px auto 0;
}

.timeline-item {
display: flex;
gap: 25px;
margin-bottom: 35px;
}

.timeline-marker {
flex-shrink: 0;
width: 50px;
height: 50px;
background: var(--secondary);
color: var(--light);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 20px;
}

.timeline-content h3 {
margin-bottom: 8px;
}

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

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

.material-card {
background: #fff;
padding: 25px;
border-radius: 8px;
border-left: 4px solid var(--secondary);
}

.material-card h3 {
margin-bottom: 10px;
}

.testimonials-section {
background: #fff;
}

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

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

.testimonial-card p {
font-style: italic;
margin-bottom: 20px;
line-height: 1.7;
}

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

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

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

.why-custom {
background: var(--light);
}

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

.comparison-item {
background: #fff;
padding: 25px;
border-radius: 8px;
}

.location-section {
background: #fff;
text-align: center;
}

.location-section p {
max-width: 800px;
margin: 0 auto 30px;
font-size: 16px;
}

.location-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 25px;
margin-top: 30px;
}

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

.location-detail strong {
display: block;
color: var(--primary);
margin-bottom: 8px;
font-size: 14px;
}

.final-cta {
background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
color: var(--light);
text-align: center;
padding: 70px 0;
}

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

.cta-content p {
font-size: 18px;
margin-bottom: 30px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

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

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

.approach-list {
margin-top: 30px;
}

.approach-item {
margin-bottom: 25px;
padding: 25px;
background: var(--light);
border-radius: 8px;
border-left: 4px solid var(--secondary);
}

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

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

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

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

.style-list {
list-style: none;
padding-left: 0;
max-width: 700px;
margin: 20px auto 0;
}

.style-list li {
padding: 12px 0;
border-bottom: 1px solid #ddd;
}

.style-list li:last-child {
border-bottom: none;
}

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

.contact-info h2 {
margin-bottom: 15px;
}

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

.info-block h3 {
font-size: 16px;
margin-bottom: 8px;
}

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

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

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 2px solid #ddd;
border-radius: 5px;
font-size: 14px;
font-family: inherit;
transition: border-color 0.3s;
}

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

.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;
}

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

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

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

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

.footer-section ul {
list-style: none;
}

.footer-section li {
margin-bottom: 8px;
}

.footer-section a {
color: var(--light);
text-decoration: none;
opacity: 0.85;
transition: opacity 0.3s;
}

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

.footer-bottom {
border-top: 1px solid rgba(245,245,220,0.2);
padding-top: 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.footer-links {
display: flex;
gap: 18px;
flex-wrap: wrap;
}

.footer-links a {
color: var(--light);
text-decoration: none;
opacity: 0.85;
font-size: 12px;
}

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

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

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

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

.popup-content p {
flex: 1;
margin: 0;
font-size: 13px;
}

.popup-buttons {
display: flex;
gap: 15px;
align-items: center;
}

.popup-buttons a {
color: var(--light);
font-size: 12px;
}

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

.thankyou-container,
.error-container {
text-align: center;
color: var(--light);
padding: 40px;
max-width: 650px;
}

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

.error-content h1 {
font-size: 80px;
margin-bottom: 15px;
}

.error-content h2 {
color: var(--light);
font-size: 32px;
margin-bottom: 18px;
}

.thankyou-content p,
.error-content p {
font-size: 16px;
margin-bottom: 18px;
opacity: 0.95;
line-height: 1.7;
}

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

.policy-content {
padding: 50px 0;
}

.policy-content h1 {
font-size: 32px;
margin-bottom: 12px;
color: var(--dark);
}

.policy-content h2 {
font-size: 24px;
margin-top: 35px;
margin-bottom: 15px;
color: var(--dark);
}

.policy-content h3 {
font-size: 18px;
margin-top: 25px;
margin-bottom: 12px;
color: var(--primary);
}

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

.policy-content ul {
margin-bottom: 18px;
padding-left: 30px;
}

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

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

.burger-menu {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
z-index: 1001;
color: #ddd;
}

.burger-menu span {
width: 25px;
height: 3px;
background: #554d4d;
transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 7px);
}

.burger-menu.active span:nth-child(2) {
opacity: 0;
}

.burger-menu.active span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -7px);
}

@media (max-width: 768px) {
body {
font-size: 13px;
}
.burger-menu {
display: flex;
}
nav {
position: fixed;
top: 0;
right: -100%;
width: 70%;
max-width: 300px;
height: 100vh;
background: var(--light);
box-shadow: -2px 0 10px rgba(0,0,0,0.1);
transition: right 0.3s;
z-index: 1000;
}
nav.active {
right: 0;
}
nav ul {
flex-direction: column;
padding: 80px 30px 30px;
gap: 0;
}
nav ul li {
width: 100%;
border-bottom: 1px solid #ddd;
}
nav ul li a {
display: block;
padding: 15px 0;
color: var(--dark);
}
.mega-hero {
min-height: 70vh;
padding: 50px 15px 30px;
}
.mega-hero h1 {
font-size: 36px;
}
.mega-hero p {
font-size: 15px;
}
.hero-stats {
gap: 30px;
}
.stat-number {
font-size: 28px;
}
.page-hero h1 {
font-size: 28px;
}
h2 {
font-size: 26px;
}
h3 {
font-size: 18px;
}
.work-grid,
.craft-grid,
.materials-grid,
.testimonial-slider,
.comparison-grid,
.location-info,
.services-grid,
.types-grid,
.products-grid {
grid-template-columns: 1fr;
}
.timeline-item {
gap: 15px;
}
.timeline-marker {
width: 40px;
height: 40px;
font-size: 18px;
}
.footer-content {
grid-template-columns: 1fr;
}
.footer-bottom {
flex-direction: column;
text-align: center;
}
.contact-grid {
grid-template-columns: 1fr;
}
.popup-content {
flex-direction: column;
text-align: center;
}
.thankyou-buttons,
.error-buttons {
flex-direction: column;
}
.error-content h1 {
font-size: 64px;
}
}

@media (max-width: 480px) {
.container {
padding: 0 12px;
}
.mega-hero {
padding: 40px 12px 25px;
}
.mega-hero h1 {
font-size: 28px;
}
.mega-hero p {
font-size: 14px;
}
.hero-badge {
font-size: 11px;
padding: 6px 16px;
}
.stat-number {
font-size: 24px;
}
.stat-label {
font-size: 11px;
}
.page-hero h1 {
font-size: 24px;
}
section {
padding: 35px 0;
}
h2 {
font-size: 22px;
}
.btn-hero,
.btn-hero-outline {
padding: 12px 24px;
font-size: 13px;
}
.btn {
padding: 10px 22px;
font-size: 12px;
}
.logo {
font-size: 16px;
}
}

@media (max-width: 320px) {
body {
font-size: 12px;
}
.mega-hero h1 {
font-size: 24px;
}
.mega-hero p {
font-size: 13px;
}
.page-hero h1 {
font-size: 20px;
}
h2 {
font-size: 20px;
}
h3 {
font-size: 16px;
}
.btn-hero,
.btn-hero-outline {
padding: 10px 20px;
font-size: 12px;
}
.btn {
padding: 9px 18px;
font-size: 11px;
}
.stat-number {
font-size: 20px;
}
.hero-stats {
gap: 20px;
}
}
