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

:root {
--clay: #8B6F47;
--terracotta: #C17855;
--sand: #E8DCC4;
--charcoal: #2C2416;
}

body {
font-family: 'Outfit', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--charcoal);
background: #FEFDFB;
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Crimson Pro', serif;
font-weight: 600;
line-height: 1.3;
margin-bottom: 0.8rem;
}

h1 {
font-size: 2.2rem;
}

h2 {
font-size: 1.8rem;
}

h3 {
font-size: 1.4rem;
}

p {
margin-bottom: 1rem;
}

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

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

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--charcoal);
color: #FFF;
padding: 15px 20px;
z-index: 9999;
display: none;
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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: 13px;
flex: 1;
min-width: 200px;
}

.privacy-actions {
display: flex;
gap: 12px;
align-items: center;
}

.privacy-actions a {
color: var(--sand);
font-size: 13px;
text-decoration: underline;
}

.privacy-actions button {
background: var(--clay);
color: #FFF;
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 13px;
font-weight: 500;
transition: background 0.3s ease;
}

.privacy-actions button:hover {
background: var(--terracotta);
}

.header {
background: #FEFDFB;
padding: 15px 0;
border-bottom: 1px solid var(--sand);
position: relative;
z-index: 100;
}

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

.logo {
font-family: 'Crimson Pro', serif;
font-size: 1.4rem;
font-weight: 600;
color: var(--clay);
}

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

.menu-toggle span {
width: 24px;
height: 2px;
background: var(--clay);
margin: 3px 0;
transition: all 0.3s ease;
}

.nav {
display: flex;
gap: 25px;
align-items: center;
}

.nav a {
color: var(--charcoal);
font-size: 14px;
font-weight: 400;
position: relative;
padding: 5px 0;
}

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

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

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

.hero {
position: relative;
min-height: 600px;
display: flex;
align-items: center;
background: linear-gradient(135deg, #F5F0E8 0%, var(--sand) 100%);
overflow: hidden;
padding: 80px 0;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 80% 20%, rgba(193,120,85,0.08) 0%, transparent 50%);
pointer-events: none;
}

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

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

.hero-text h1 {
font-size: 3rem;
color: var(--charcoal);
margin-bottom: 1.5rem;
line-height: 1.2;
}

.hero-text p {
font-size: 1.05rem;
color: var(--clay);
margin-bottom: 2.5rem;
line-height: 1.7;
}

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

.btn-primary, .btn-secondary, .btn-outline {
display: inline-block;
padding: 12px 30px;
border-radius: 5px;
font-weight: 500;
font-size: 14px;
transition: all 0.3s ease;
border: 2px solid transparent;
cursor: pointer;
}

.btn-primary {
background: var(--clay);
color: #FFF;
}

.btn-primary:hover {
background: var(--terracotta);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(139,111,71,0.2);
}

.btn-secondary {
background: transparent;
color: var(--clay);
border-color: var(--clay);
}

.btn-secondary:hover {
background: var(--clay);
color: #FFF;
}

.btn-outline {
background: transparent;
color: var(--charcoal);
border-color: var(--charcoal);
}

.btn-outline:hover {
background: var(--charcoal);
color: #FFF;
}

.hero-visual {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
position: relative;
}

.hero-card {
background: #FFF;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
transition: transform 0.3s ease;
}

.hero-card:hover {
transform: translateY(-5px);
}

.hero-card-1 {
grid-column: 1 / 2;
}

.hero-card-2 {
grid-column: 2 / 3;
margin-top: 40px;
}

.hero-card-3 {
grid-column: 1 / 3;
}

.card-icon {
font-size: 2rem;
color: var(--terracotta);
margin-bottom: 1rem;
}

.hero-card h3 {
font-size: 1.1rem;
color: var(--charcoal);
margin-bottom: 0.3rem;
}

.hero-card p {
font-size: 13px;
color: var(--clay);
margin: 0;
}

section {
padding: 60px 0;
}

.philosophy {
background: #FFF;
}

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

.philosophy-content h2 {
color: var(--charcoal);
margin-bottom: 1.5rem;
}

.philosophy-content p {
color: var(--clay);
margin-bottom: 1.5rem;
line-height: 1.8;
}

.makers-intro {
background: var(--sand);
}

.makers-intro h2 {
text-align: center;
color: var(--charcoal);
margin-bottom: 3rem;
}

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

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

.maker-initial {
width: 80px;
height: 80px;
border-radius: 50%;
background: var(--clay);
color: #FFF;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
font-family: 'Crimson Pro', serif;
margin: 0 auto 1.5rem;
}

.maker-profile h3 {
color: var(--charcoal);
margin-bottom: 0.3rem;
}

.maker-role {
font-size: 13px;
color: var(--terracotta);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 1rem;
}

.maker-profile p {
color: var(--clay);
font-size: 14px;
line-height: 1.7;
}

.showcase {
background: #FFF;
}

.showcase h2 {
text-align: center;
color: var(--charcoal);
margin-bottom: 3rem;
}

.showcase-grid {
display: flex;
flex-direction: column;
gap: 60px;
}

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

.showcase-item:nth-child(even) .showcase-image {
order: 2;
}

.showcase-item:nth-child(even) .showcase-content {
order: 1;
}

.showcase-image {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

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

.showcase-content h3 {
color: var(--charcoal);
margin-bottom: 1rem;
}

.showcase-content p {
color: var(--clay);
margin-bottom: 1.5rem;
line-height: 1.7;
}

.price {
display: block;
font-size: 1.6rem;
font-weight: 600;
color: var(--terracotta);
font-family: 'Crimson Pro', serif;
margin-bottom: 1.5rem;
}

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

.materials h2 {
text-align: center;
color: var(--charcoal);
margin-bottom: 3rem;
}

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

.material-block {
background: #FFF;
padding: 30px;
border-radius: 8px;
}

.material-block h3 {
color: var(--charcoal);
margin-bottom: 0.8rem;
}

.material-block p {
color: var(--clay);
font-size: 14px;
margin: 0;
line-height: 1.7;
}

.studio-visit {
background: #FFF;
text-align: center;
}

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

.visit-content h2 {
color: var(--charcoal);
margin-bottom: 1.5rem;
}

.visit-content p {
color: var(--clay);
margin-bottom: 1.5rem;
line-height: 1.8;
}

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

.testimonials h2 {
text-align: center;
color: var(--charcoal);
margin-bottom: 3rem;
}

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

.testimonial-card {
background: #FFF;
padding: 30px;
border-radius: 8px;
}

.testimonial-card p {
color: var(--clay);
font-style: italic;
margin-bottom: 1.5rem;
line-height: 1.7;
}

.testimonial-author {
font-size: 13px;
color: var(--terracotta);
font-style: normal;
}

.page-hero {
background: linear-gradient(135deg, #F5F0E8 0%, var(--sand) 100%);
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
color: var(--charcoal);
font-size: 2.5rem;
margin-bottom: 0.8rem;
}

.page-hero p {
color: var(--clay);
font-size: 1.1rem;
margin: 0;
}

.products-full {
background: #FFF;
}

.products-intro {
text-align: center;
max-width: 800px;
margin: 0 auto 3rem;
}

.products-intro h2 {
color: var(--charcoal);
margin-bottom: 1.5rem;
}

.products-intro p {
color: var(--clay);
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 35px;
margin-bottom: 3rem;
}

.product-card {
background: var(--sand);
border-radius: 10px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.product-card h3 {
padding: 20px 20px 10px;
color: var(--charcoal);
font-size: 1.2rem;
}

.product-card p {
padding: 0 20px;
color: var(--clay);
font-size: 13px;
}

.product-card .price {
padding: 10px 20px;
margin: 0;
}

.product-card .btn-secondary {
margin: 0 20px 20px;
width: calc(100% - 40px);
text-align: center;
}

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

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

.custom-orders h2 {
color: var(--charcoal);
margin-bottom: 1.5rem;
}

.custom-orders > p {
max-width: 800px;
margin: 0 auto 2.5rem;
color: var(--clay);
}

.custom-features {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-bottom: 2.5rem;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}

.custom-item {
padding: 20px;
}

.custom-item h3 {
color: var(--charcoal);
margin-bottom: 0.8rem;
}

.custom-item p {
color: var(--clay);
font-size: 14px;
margin: 0;
}

.materials-list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
max-width: 900px;
margin: 0 auto;
}

.material-item {
display: flex;
align-items: center;
gap: 12px;
padding: 15px;
background: #FFF;
border-radius: 6px;
}

.material-item span {
color: var(--charcoal);
font-size: 14px;
}

.makers-story {
background: #FFF;
}

.makers-story h2 {
text-align: center;
color: var(--charcoal);
margin-bottom: 2rem;
}

.makers-story p {
max-width: 900px;
margin: 0 auto 1.5rem;
color: var(--clay);
text-align: center;
line-height: 1.8;
}

.makers-values {
background: var(--sand);
}

.makers-values h2 {
text-align: center;
color: var(--charcoal);
margin-bottom: 3rem;
}

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

.value-card {
background: #FFF;
padding: 30px;
border-radius: 8px;
}

.value-card h3 {
color: var(--charcoal);
margin-bottom: 0.8rem;
}

.value-card p {
color: var(--clay);
font-size: 14px;
margin: 0;
line-height: 1.7;
}

.workshop {
background: #FFF;
}

.workshop h2 {
text-align: center;
color: var(--charcoal);
margin-bottom: 2rem;
}

.workshop > p {
max-width: 900px;
margin: 0 auto 1.5rem;
color: var(--clay);
text-align: center;
line-height: 1.8;
}

.workshop-highlights {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
max-width: 900px;
margin: 2.5rem auto 0;
}

.highlight-item {
display: flex;
align-items: center;
gap: 12px;
padding: 15px;
background: var(--sand);
border-radius: 6px;
}

.highlight-item span {
color: var(--charcoal);
font-size: 14px;
}

.join-journey {
background: var(--sand);
text-align: center;
}

.join-journey h2 {
color: var(--charcoal);
margin-bottom: 1.5rem;
}

.join-journey p {
max-width: 700px;
margin: 0 auto 2rem;
color: var(--clay);
line-height: 1.8;
}

.contact-section {
background: #FFF;
}

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

.contact-info h2 {
color: var(--charcoal);
margin-bottom: 1.5rem;
}

.contact-info > p {
color: var(--clay);
margin-bottom: 2.5rem;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 25px;
}

.contact-item {
display: flex;
gap: 15px;
}

.contact-item h3 {
font-size: 1.1rem;
color: var(--charcoal);
margin-bottom: 0.3rem;
}

.contact-item p {
color: var(--clay);
font-size: 14px;
margin: 0;
line-height: 1.6;
}

.contact-form-wrapper {
background: var(--sand);
padding: 35px;
border-radius: 10px;
}

.contact-form h3 {
color: var(--charcoal);
margin-bottom: 1.5rem;
text-align: center;
}

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

.form-group label {
display: block;
margin-bottom: 6px;
color: var(--charcoal);
font-size: 14px;
font-weight: 500;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid var(--sand);
border-radius: 5px;
font-family: 'Outfit', sans-serif;
font-size: 14px;
color: var(--charcoal);
background: #FFF;
transition: border-color 0.3s ease;
}

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

.form-group textarea {
resize: vertical;
min-height: 120px;
}

.checkbox-group {
margin-bottom: 25px;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
font-size: 13px;
color: var(--clay);
}

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

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

.contact-form button {
width: 100%;
}

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

.map-section h2 {
text-align: center;
color: var(--charcoal);
margin-bottom: 2rem;
}

.map-wrapper {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.thankyou-section, .error-section {
min-height: calc(100vh - 130px);
display: flex;
align-items: center;
justify-content: center;
background: var(--sand);
}

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

.thankyou-content h1, .error-content h1 {
color: var(--charcoal);
margin-bottom: 1rem;
}

.error-content h1 {
font-size: 5rem;
margin-bottom: 0.5rem;
}

.error-content h2 {
color: var(--charcoal);
margin-bottom: 1rem;
}

.thankyou-content p, .error-content p {
color: var(--clay);
margin-bottom: 2rem;
line-height: 1.8;
}

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

.policy-section {
background: #FFF;
padding: 60px 0;
}

.policy-section h1 {
color: var(--charcoal);
margin-bottom: 1rem;
text-align: center;
}

.policy-date {
text-align: center;
color: var(--clay);
font-size: 14px;
margin-bottom: 3rem;
}

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

.policy-content h2 {
color: var(--charcoal);
margin-top: 2.5rem;
margin-bottom: 1rem;
font-size: 1.6rem;
}

.policy-content h3 {
color: var(--charcoal);
margin-top: 1.5rem;
margin-bottom: 0.8rem;
font-size: 1.2rem;
}

.policy-content p {
color: var(--clay);
margin-bottom: 1.2rem;
line-height: 1.7;
}

.footer {
background: var(--charcoal);
color: #FFF;
padding: 25px 0;
}

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

.footer-info p {
margin: 0;
font-size: 13px;
opacity: 0.9;
}

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

.footer-links a {
font-size: 12px;
opacity: 0.9;
transition: opacity 0.3s ease;
}

.footer-links a:hover {
opacity: 1;
color: var(--sand);
}

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

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

.makers-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.showcase-item {
grid-template-columns: 1fr;
gap: 30px;
}

.showcase-item:nth-child(even) .showcase-image {
order: 1;
}

.showcase-item:nth-child(even) .showcase-content {
order: 2;
}

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

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

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

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

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

.workshop-highlights {
grid-template-columns: 1fr;
}

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

@media (max-width: 768px) {
h1 {
font-size: 1.8rem;
}

h2 {
font-size: 1.5rem;
}

h3 {
font-size: 1.2rem;
}

.container {
padding: 0 15px;
}

.menu-toggle {
display: flex;
}

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #FEFDFB;
flex-direction: column;
padding: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
display: none;
gap: 15px;
}

.nav.active {
display: flex;
}

.nav a {
padding: 10px 0;
border-bottom: 1px solid var(--sand);
}

.nav a:last-child {
border-bottom: none;
}

.hero {
min-height: auto;
padding: 50px 0;
}

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

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

.hero-visual {
grid-template-columns: 1fr;
}

.hero-card-2 {
margin-top: 0;
}

.hero-card-3 {
grid-column: 1 / 2;
}

section {
padding: 40px 0;
}

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

.contact-form-wrapper {
padding: 25px;
}

.thankyou-actions, .error-actions {
flex-direction: column;
}

.thankyou-actions a, .error-actions a {
width: 100%;
text-align: center;
}

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

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

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

h1 {
font-size: 1.6rem;
}

h2 {
font-size: 1.3rem;
}

h3 {
font-size: 1.1rem;
}

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

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

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

.hero-card {
padding: 20px;
}

.value-card, .material-block {
padding: 20px;
}

.product-image {
height: 220px;
}

.error-content h1 {
font-size: 3.5rem;
}

.privacy-content {
flex-direction: column;
align-items: flex-start;
}

.privacy-actions {
width: 100%;
justify-content: space-between;
}
}

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

body {
font-size: 13px;
}

h1 {
font-size: 1.4rem;
}

h2 {
font-size: 1.2rem;
}

h3 {
font-size: 1rem;
}

.btn-primary, .btn-secondary, .btn-outline {
padding: 9px 20px;
font-size: 12px;
}

.hero {
padding: 35px 0;
}

section {
padding: 30px 0;
}

.hero-card, .value-card, .material-block {
padding: 18px;
}

.contact-form-wrapper {
padding: 20px;
}

.footer {
padding: 20px 0;
}
}
