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

:root {
--primary: #1B4332;
--secondary: #D4A373;
--accent: #95D5B2;
--dark: #081C15;
--light: #F8F9FA;
}

body {
font-family: 'Outfit', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--dark);
background: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Crimson Pro', serif;
font-weight: 600;
line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: white;
padding: 15px 20px;
z-index: 9999;
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 {
margin: 0;
font-size: 14px;
flex: 1;
min-width: 250px;
}

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

.privacy-buttons button {
background: var(--primary);
color: white;
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
}

.privacy-buttons a {
color: white;
font-size: 14px;
text-decoration: underline;
}

.header-unique {
background: white;
padding: 20px 0;
border-bottom: 1px solid #E5E5E5;
}

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

.logo-section a {
font-family: 'Crimson Pro', serif;
font-size: 1.4rem;
font-weight: 600;
color: var(--primary);
text-decoration: none;
}

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

.nav-toggle span {
display: block;
width: 25px;
height: 3px;
background: var(--primary);
transition: all 0.3s;
}

.nav-menu {
display: flex;
list-style: none;
gap: 30px;
}

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

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

.hero-mega {
position: relative;
padding: 120px 0 140px;
overflow: hidden;
background: linear-gradient(165deg, var(--primary) 0%, #2d6a4f 50%, var(--secondary) 100%);
}

.hero-bg-shape {
position: absolute;
top: -30%;
right: -15%;
width: 70%;
height: 140%;
background: rgba(255,255,255,0.05);
border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
z-index: 0;
animation: morphShape 20s ease-in-out infinite;
}

@keyframes morphShape {
0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
50% { border-radius: 70% 30% 50% 50% / 60% 40% 60% 40%; }
}

.hero-grid {
display: grid;
grid-template-columns: 1.1fr 1fr;
gap: 80px;
align-items: center;
position: relative;
z-index: 1;
}

.hero-label {
display: inline-block;
background: rgba(255,255,255,0.2);
color: white;
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 24px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.3);
letter-spacing: 0.5px;
}

.hero-text h1 {
margin-bottom: 28px;
color: white;
font-size: 3.5rem;
line-height: 1.1;
font-weight: 700;
}

.hero-text p {
font-size: 1.15rem;
color: rgba(255,255,255,0.9);
margin-bottom: 40px;
line-height: 1.8;
}

.hero-cta-group {
display: flex;
gap: 16px;
margin-bottom: 40px;
flex-wrap: wrap;
}

.btn-primary {
display: inline-block;
background: white;
color: var(--primary);
padding: 16px 40px;
border-radius: 50px;
font-weight: 600;
text-decoration: none;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-primary:hover {
background: var(--secondary);
color: white;
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.btn-outline {
display: inline-block;
background: transparent;
color: white;
padding: 16px 40px;
border: 2px solid rgba(255,255,255,0.5);
border-radius: 50px;
font-weight: 600;
text-decoration: none;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
backdrop-filter: blur(10px);
}

.btn-outline:hover {
background: rgba(255,255,255,0.2);
border-color: white;
transform: translateY(-3px);
}

.hero-stats {
display: flex;
gap: 40px;
flex-wrap: wrap;
}

.stat-item {
display: flex;
flex-direction: column;
}

.stat-item strong {
font-size: 2.5rem;
color: white;
font-family: 'Crimson Pro', serif;
font-weight: 700;
}

.stat-item span {
font-size: 14px;
color: rgba(255,255,255,0.8);
}

.hero-image {
position: relative;
}

.image-wrapper {
position: relative;
border-radius: 30px;
overflow: hidden;
box-shadow: 0 30px 80px rgba(0,0,0,0.3);
transform: rotate(3deg);
transition: transform 0.5s ease;
}

.image-wrapper:hover {
transform: rotate(0deg) scale(1.02);
}

.image-wrapper img {
width: 100%;
filter: brightness(1.05) contrast(1.1);
}

.image-badge {
position: absolute;
bottom: 30px;
right: 30px;
background: rgba(255,255,255,0.95);
color: var(--primary);
padding: 14px 28px;
border-radius: 50px;
font-weight: 700;
font-size: 15px;
box-shadow: 0 8px 25px rgba(0,0,0,0.2);
backdrop-filter: blur(10px);
}

.section-header {
margin-bottom: 50px;
}

.section-header.centered {
text-align: center;
}

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

.featured-work {
padding: 100px 0;
}

.work-showcase {
display: flex;
flex-direction: column;
gap: 80px;
}

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

.work-card.reverse {
direction: rtl;
}

.work-card.reverse > * {
direction: ltr;
}

.work-image {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.work-info h3 {
color: var(--dark);
margin-bottom: 16px;
}

.work-info p {
color: #666;
margin-bottom: 20px;
line-height: 1.7;
}

.text-arrow {
color: var(--primary);
font-weight: 500;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
}

.text-arrow:after {
content: '→';
transition: transform 0.3s;
}

.text-arrow:hover:after {
transform: translateX(5px);
}

.story-section {
padding: 100px 0;
background: var(--light);
}

.story-grid {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 60px;
}

.story-content p {
color: #666;
margin-bottom: 20px;
line-height: 1.7;
}

.story-signature {
margin-top: 40px;
padding-top: 30px;
border-top: 2px solid var(--primary);
}

.story-signature p {
margin: 0;
}

.story-signature em {
font-size: 1.2rem;
color: var(--primary);
font-style: normal;
font-family: 'Crimson Pro', serif;
}

.stat-box {
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.values-list {
list-style: none;
}

.values-list li {
padding: 12px 0;
color: #666;
border-bottom: 1px solid #E5E5E5;
position: relative;
padding-left: 24px;
}

.values-list li:before {
content: '✓';
position: absolute;
left: 0;
color: var(--primary);
font-weight: 600;
}

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

.process-visual {
padding: 100px 0;
}

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

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

.timeline-number {
width: 60px;
height: 60px;
background: var(--primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
font-weight: 600;
margin: 0 auto 20px;
}

.timeline-item h3 {
color: var(--dark);
margin-bottom: 12px;
font-size: 1.2rem;
}

.timeline-item p {
font-size: 14px;
color: #666;
line-height: 1.6;
}

.materials-preview {
padding: 100px 0;
background: var(--light);
}

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

.materials-text p {
color: #666;
margin-bottom: 20px;
line-height: 1.7;
}

.materials-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}

.material-tag {
background: white;
padding: 20px;
border-radius: 8px;
text-align: center;
font-weight: 500;
color: var(--dark);
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonials {
padding: 100px 0;
}

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

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

.testimonial-card p {
color: #666;
font-style: italic;
margin-bottom: 24px;
line-height: 1.7;
}

.testimonial-author strong {
display: block;
color: var(--dark);
margin-bottom: 4px;
}

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

.occasions-guide {
padding: 100px 0;
background: var(--light);
}

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

.occasion-box {
background: white;
padding: 30px;
border-radius: 12px;
border-left: 4px solid var(--primary);
}

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

.occasion-box p {
color: #666;
font-size: 14px;
margin: 0;
}

.workshop-visit {
padding: 100px 0;
}

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

.visit-text p {
color: #666;
margin-bottom: 20px;
line-height: 1.7;
}

.visit-details {
background: var(--light);
padding: 30px;
border-radius: 12px;
margin: 30px 0;
}

.visit-details p {
margin: 8px 0;
}

.site-footer {
background: var(--dark);
color: white;
padding: 30px 0;
margin-top: 0;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-info p {
margin: 0;
font-size: 14px;
}

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

.footer-links a {
color: white;
font-size: 13px;
text-decoration: none;
}

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

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

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

.page-hero p {
color: #666;
font-size: 1.1rem;
margin: 0;
}

.products-section {
padding: 80px 0;
}

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

.product-card {
background: white;
border: 1px solid #E5E5E5;
border-radius: 12px;
overflow: hidden;
transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.product-image {
overflow: hidden;
}

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

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

.product-info {
padding: 30px;
}

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

.product-info p {
font-size: 14px;
color: #666;
margin-bottom: 20px;
line-height: 1.6;
}

.product-price {
font-size: 1.5rem;
font-weight: 600;
color: var(--primary);
margin-bottom: 20px;
}

.product-button {
display: inline-block;
background: var(--primary);
color: white;
padding: 12px 28px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
text-decoration: none;
transition: background 0.3s;
}

.product-button:hover {
background: #234a3d;
}

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

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

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

.custom-text p {
color: #666;
margin-bottom: 20px;
line-height: 1.7;
}

.custom-features {
display: flex;
flex-direction: column;
gap: 24px;
}

.custom-item {
background: white;
padding: 24px;
border-radius: 8px;
}

.custom-item h3 {
color: var(--primary);
margin-bottom: 8px;
font-size: 1.1rem;
}

.custom-item p {
font-size: 14px;
color: #666;
margin: 0;
}

.text-link {
color: var(--primary);
font-weight: 600;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
transition: color 0.3s;
}

.text-link:hover {
color: var(--secondary);
}

.inspiration-section {
padding: 80px 0;
}

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

.inspiration-card {
background: var(--light);
padding: 30px;
border-radius: 12px;
text-align: center;
}

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

.inspiration-card p {
font-size: 14px;
color: #666;
margin: 0;
}

.materials-intro {
padding: 80px 0;
text-align: center;
}

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

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

.intro-content p {
color: #666;
line-height: 1.7;
}

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

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

.material-card {
background: white;
padding: 35px;
border-radius: 12px;
text-align: center;
}

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

.material-card p {
font-size: 14px;
color: #666;
margin: 0;
line-height: 1.6;
}

.sustainability-section {
padding: 80px 0;
}

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

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

.sustainability-text p {
color: #666;
margin-bottom: 20px;
line-height: 1.7;
}

.sustainability-list {
list-style: none;
}

.sustainability-list li {
padding: 12px 0;
color: #666;
border-bottom: 1px solid #E5E5E5;
position: relative;
padding-left: 24px;
}

.sustainability-list li:before {
content: '✓';
position: absolute;
left: 0;
color: var(--primary);
font-weight: 600;
}

.sustainability-icon {
text-align: center;
font-size: 8rem;
color: var(--primary);
opacity: 0.1;
}

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

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

.contact-hero p {
color: #666;
font-size: 1.1rem;
margin: 0;
}

.contact-main {
padding: 80px 0;
}

.contact-layout {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 60px;
}

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

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

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

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

.form-group input,
.form-group textarea {
padding: 14px;
border: 1px solid #E5E5E5;
border-radius: 6px;
font-family: 'Outfit', sans-serif;
font-size: 15px;
transition: border-color 0.3s;
}

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

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

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

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

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

.submit-button {
background: var(--primary);
color: white;
padding: 14px 32px;
border: none;
border-radius: 6px;
font-size: 15px;
font-weight: 500;
cursor: pointer;
transition: background 0.3s;
}

.submit-button:hover {
background: #234a3d;
}

.contact-info-wrapper h3 {
color: var(--primary);
margin-bottom: 30px;
}

.contact-info-card {
background: var(--light);
padding: 35px;
border-radius: 12px;
}

.info-item {
margin-bottom: 28px;
display: flex;
flex-direction: column;
}

.info-item:last-child {
margin-bottom: 0;
}

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

.info-item p {
font-size: 14px;
color: #666;
margin: 0;
line-height: 1.6;
}

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

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

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

.contact-cta {
padding: 100px 0;
background: linear-gradient(135deg, var(--primary) 0%, #2d6a4f 100%);
position: relative;
overflow: hidden;
text-align: center;
}

.contact-cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="white" opacity="0.1"/></svg>');
opacity: 0.3;
}

.contact-cta .cta-content {
position: relative;
z-index: 1;
max-width: 700px;
margin: 0 auto;
}

.contact-cta .cta-content h2 {
color: white;
margin-bottom: 20px;
font-size: 2.5rem;
}

.contact-cta .cta-content p {
color: rgba(255,255,255,0.9);
font-size: 1.15rem;
margin-bottom: 40px;
}

.cta-button-secondary {
display: inline-block;
background: white;
color: var(--primary);
padding: 16px 40px;
border-radius: 50px;
font-weight: 600;
text-decoration: none;
transition: all 0.4s;
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-button-secondary:hover {
background: var(--secondary);
color: white;
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin-top: 30px;
}

.fullheight-main {
min-height: calc(100vh - 150px);
display: flex;
align-items: center;
justify-content: center;
}

.thankyou-section,
.error-section {
padding: 80px 0;
text-align: 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 {
font-size: 1.05rem;
color: #666;
margin-bottom: 40px;
line-height: 1.7;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.error-number {
font-size: 8rem;
font-weight: 600;
color: var(--primary);
opacity: 0.2;
margin-bottom: 20px;
}

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

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

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

.policy-date {
color: #999;
font-size: 14px;
margin-bottom: 40px;
font-style: italic;
}

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

.policy-content h3 {
color: var(--secondary);
margin-top: 30px;
margin-bottom: 16px;
}

.policy-content p {
color: #666;
margin-bottom: 20px;
line-height: 1.7;
}

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

.policy-content li {
margin-bottom: 12px;
color: #666;
line-height: 1.6;
}

@media (max-width: 1024px) {
.hero-grid,
.work-card,
.story-grid,
.materials-content,
.custom-content,
.sustainability-content,
.contact-layout {
grid-template-columns: 1fr;
gap: 40px;
}

.work-card.reverse {
direction: ltr;
}

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

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

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

@media (max-width: 768px) {
.nav-toggle {
display: flex;
}

.nav-menu {
position: absolute;
top: 100%;
right: 20px;
background: white;
flex-direction: column;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
display: none;
min-width: 200px;
margin-top: 10px;
gap: 15px;
}

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

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }

.hero-mega {
padding: 60px 0;
}

.hero-stats {
gap: 30px;
}

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

.products-grid,
.testimonial-grid,
.occasions-grid,
.materials-grid,
.inspiration-grid {
grid-template-columns: 1fr;
}

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

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

.footer-links {
justify-content: center;
}
}

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

.container {
padding: 0 16px;
}

h1 { font-size: 1.6rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.1rem; }

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

.hero-cta-group {
flex-direction: column;
}

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

.hero-stats {
gap: 20px;
}

.stat-item strong {
font-size: 1.5rem;
}

.featured-work,
.story-section,
.process-visual,
.materials-preview,
.testimonials,
.occasions-guide,
.workshop-visit,
.products-section,
.customization-section,
.inspiration-section,
.materials-intro,
.materials-showcase,
.sustainability-section,
.contact-main,
.map-section,
.contact-cta {
padding: 60px 0;
}

.section-header {
margin-bottom: 40px;
}

.work-showcase {
gap: 60px;
}

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

.product-info,
.contact-info-card,
.stat-box {
padding: 24px;
}

.testimonial-card,
.material-card {
padding: 24px;
}

.footer-links {
flex-direction: column;
gap: 12px;
}
}

@media (max-width: 360px) {
.container {
padding: 0 12px;
}

h1 { font-size: 1.4rem; }
h2 { font-size: 1.2rem; }

.hero-text h1 {
font-size: 1.8rem;
}

.btn-primary,
.btn-outline,
.cta-button-secondary {
padding: 12px 28px;
font-size: 14px;
}

.hero-stats {
flex-direction: column;
gap: 16px;
}

.stat-item strong {
font-size: 1.8rem;
}
}

@media (max-width: 320px) {
.container {
padding: 0 10px;
}

body {
font-size: 13px;
}

h1 { font-size: 1.3rem; }
h2 { font-size: 1.1rem; }
h3 { font-size: 1rem; }

.hero-text h1 {
font-size: 1.6rem;
}

.hero-text p {
font-size: 0.95rem;
}

.btn-primary,
.btn-outline,
.cta-button-secondary {
padding: 10px 24px;
font-size: 13px;
width: 100%;
}

.hero-mega {
padding: 60px 0 80px;
}

.stat-item strong {
font-size: 1.5rem;
}

.stat-item span {
font-size: 12px;
}

.image-badge {
padding: 10px 20px;
font-size: 13px;
bottom: 15px;
right: 15px;
}

.section-header {
margin-bottom: 30px;
}

.product-info,
.contact-info-card,
.stat-box,
.testimonial-card,
.material-card {
padding: 20px;
}

.timeline-number {
width: 50px;
height: 50px;
font-size: 1.1rem;
}

.featured-work,
.story-section,
.process-visual,
.materials-preview,
.testimonials,
.occasions-guide,
.workshop-visit,
.products-section,
.customization-section,
.inspiration-section,
.materials-intro,
.materials-showcase,
.sustainability-section,
.contact-main,
.map-section,
.contact-cta {
padding: 50px 0;
}

.cta-content h2 {
font-size: 1.4rem !important;
}

.cta-content p {
font-size: 0.95rem !important;
}
}
