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

:root {
--soft-suede: #F5F2EE;
--smoked-iron: #33302E;
--muted-terracotta: #B08D7B;
--sage-gray: #8F9779;
--white: #FFFFFF;
--light-gray: #E8E5E1;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Inter', sans-serif;
font-size: 15px;
line-height: 1.7;
color: var(--smoked-iron);
background-color: var(--soft-suede);
font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Cormorant Garamond', serif;
font-weight: 400;
line-height: 1.3;
letter-spacing: 0.02em;
}

h1 {
font-size: 2.8rem;
margin-bottom: 1rem;
}

h2 {
font-size: 2.2rem;
margin-bottom: 0.8rem;
}

h3 {
font-size: 1.6rem;
margin-bottom: 0.6rem;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--smoked-iron);
color: var(--white);
padding: 18px 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;
align-items: center;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
}

.privacy-content p {
margin: 0;
font-size: 14px;
flex: 1;
min-width: 250px;
}

.privacy-btn {
background: var(--muted-terracotta);
color: var(--white);
border: none;
padding: 10px 28px;
cursor: pointer;
font-size: 14px;
font-weight: 400;
transition: all 0.3s ease;
white-space: nowrap;
}

.privacy-btn:hover {
background: var(--sage-gray);
}

.header {
background: var(--white);
padding: 15px 0;
position: relative;
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
font-weight: 600;
color: var(--smoked-iron);
letter-spacing: 0.03em;
}

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

.nav a {
font-size: 14px;
color: var(--smoked-iron);
position: relative;
font-weight: 400;
}

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

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

.nav-toggle span {
width: 24px;
height: 2px;
background: var(--smoked-iron);
transition: all 0.3s ease;
}

.btn-primary {
display: inline-block;
background: var(--muted-terracotta);
color: var(--white);
padding: 14px 36px;
font-size: 15px;
font-weight: 400;
transition: all 0.3s ease;
}

.btn-primary:hover {
background: var(--sage-gray);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
display: inline-block;
background: var(--smoked-iron);
color: var(--white);
padding: 14px 36px;
font-size: 15px;
font-weight: 400;
transition: all 0.3s ease;
}

.btn-secondary:hover {
background: var(--muted-terracotta);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-outline {
display: inline-block;
border: 1px solid var(--smoked-iron);
color: var(--smoked-iron);
padding: 12px 32px;
font-size: 14px;
font-weight: 400;
transition: all 0.3s ease;
}

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

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

.hero-home {
padding: 80px 0;
background: linear-gradient(135deg, var(--soft-suede) 0%, var(--light-gray) 100%);
}

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

.hero-content h1 {
font-size: 3.5rem;
margin-bottom: 1.2rem;
}

.hero-content p {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.9;
}

.about-home {
padding: 80px 0;
background: var(--white);
}

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

.about-content h2 {
margin-bottom: 1.5rem;
}

.about-content p {
font-size: 1.05rem;
margin-bottom: 1rem;
line-height: 1.8;
}

.featured-home {
padding: 80px 0;
background: var(--soft-suede);
}

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

.featured-image img {
width: 100%;
height: auto;
}

.featured-text h2 {
margin-bottom: 1.2rem;
}

.featured-text p {
margin-bottom: 1rem;
line-height: 1.8;
}

.featured-text .btn-outline {
margin-top: 1rem;
}

.services-home {
padding: 80px 0;
background: var(--white);
}

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

.services-intro h2 {
margin-bottom: 0.8rem;
}

.services-intro p {
font-size: 1rem;
opacity: 0.8;
}

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

.service-item {
display: flex;
gap: 20px;
align-items: flex-start;
padding: 25px;
background: var(--soft-suede);
transition: all 0.3s ease;
}

.service-item:hover {
transform: translateY(-3px);
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-item i {
font-size: 2rem;
color: var(--muted-terracotta);
margin-top: 5px;
flex-shrink: 0;
}

.service-item h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
}

.service-item p {
font-size: 14px;
line-height: 1.6;
}

.process-home {
padding: 80px 0;
background: var(--soft-suede);
}

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

.process-image img {
width: 100%;
height: auto;
}

.process-steps h2 {
margin-bottom: 2rem;
}

.step-list {
display: flex;
flex-direction: column;
gap: 25px;
}

.step-item {
display: flex;
gap: 20px;
align-items: flex-start;
}

.step-num {
font-family: 'Cormorant Garamond', serif;
font-size: 2rem;
color: var(--muted-terracotta);
opacity: 0.4;
flex-shrink: 0;
width: 50px;
}

.step-item h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
}

.step-item p {
font-size: 14px;
line-height: 1.6;
}

.gallery-home {
padding: 80px 0;
background: var(--white);
}

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

.gallery-text h2 {
margin-bottom: 1.2rem;
}

.gallery-text p {
margin-bottom: 1rem;
line-height: 1.8;
}

.gallery-text .btn-outline {
margin-top: 1rem;
}

.gallery-image img {
width: 100%;
height: auto;
}

.cta {
padding: 80px 0;
background: var(--smoked-iron);
color: var(--white);
}

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

.cta h2 {
color: var(--white);
margin-bottom: 1rem;
}

.cta p {
font-size: 1.05rem;
margin-bottom: 2rem;
opacity: 0.9;
}

.page-hero {
padding: 60px 0;
background: linear-gradient(135deg, var(--soft-suede) 0%, var(--light-gray) 100%);
}

.page-hero-content {
max-width: 700px;
margin: 0 auto;
text-align: center;
}

.page-hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
}

.page-hero p {
font-size: 1.05rem;
opacity: 0.9;
}

.content-section {
padding: 70px 0;
}

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

.content-block h2 {
margin-bottom: 1.2rem;
}

.content-block p {
margin-bottom: 1rem;
}

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

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

.feature-list li {
padding: 10px 0;
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 15px;
}

.feature-list i {
color: var(--muted-terracotta);
margin-top: 4px;
font-size: 14px;
}

.products {
padding: 70px 0;
background: var(--white);
}

.section-header {
text-align: center;
max-width: 600px;
margin: 0 auto 50px;
}

.section-header p {
font-size: 1rem;
color: var(--smoked-iron);
opacity: 0.8;
}

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

.product-card {
text-align: center;
padding: 30px;
background: var(--soft-suede);
transition: all 0.3s ease;
}

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

.product-image {
width: 100%;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
background: var(--white);
margin-bottom: 1.5rem;
}

.product-image i {
font-size: 4rem;
color: var(--muted-terracotta);
}

.product-card h3 {
font-size: 1.4rem;
margin-bottom: 0.8rem;
}

.product-card p {
font-size: 14px;
margin-bottom: 1.2rem;
line-height: 1.6;
}

.product-price {
font-family: 'Cormorant Garamond', serif;
font-size: 1.8rem;
color: var(--muted-terracotta);
margin-bottom: 1.2rem;
}

.approach {
padding: 70px 0;
}

.approach-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 35px;
}

.approach-card {
text-align: center;
padding: 25px;
}

.approach-card i {
font-size: 2.5rem;
color: var(--sage-gray);
margin-bottom: 1rem;
}

.approach-card h3 {
font-size: 1.3rem;
margin-bottom: 0.7rem;
}

.approach-card p {
font-size: 14px;
line-height: 1.6;
}

.tips {
padding: 70px 0;
background: var(--white);
}

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

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

.tip-item h3 {
font-size: 1.3rem;
margin-bottom: 0.7rem;
}

.tip-item p {
font-size: 14px;
line-height: 1.6;
}

.contact-hero {
padding: 60px 0;
background: linear-gradient(135deg, var(--soft-suede) 0%, var(--light-gray) 100%);
}

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

.contact-intro h1 {
font-size: 3rem;
margin-bottom: 1rem;
}

.contact-intro p {
font-size: 1.05rem;
opacity: 0.9;
}

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

.contact-grid {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 60px;
}

.contact-form-wrapper h2 {
margin-bottom: 1rem;
}

.contact-form-wrapper > p {
margin-bottom: 2rem;
font-size: 15px;
opacity: 0.9;
}

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

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

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

.form-group input,
.form-group textarea {
padding: 12px 15px;
border: 1px solid var(--light-gray);
background: var(--white);
font-family: 'Inter', sans-serif;
font-size: 15px;
color: var(--smoked-iron);
transition: all 0.3s ease;
}

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

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

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

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

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

.checkbox-label span {
flex: 1;
}

.contact-info-wrapper {
display: flex;
flex-direction: column;
gap: 30px;
}

.contact-info-card,
.hours-card {
background: var(--white);
padding: 30px;
}

.contact-info-card h3,
.hours-card h3 {
font-size: 1.5rem;
margin-bottom: 1.5rem;
}

.info-item {
display: flex;
gap: 15px;
margin-bottom: 1.5rem;
}

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

.info-item i {
font-size: 1.2rem;
color: var(--muted-terracotta);
margin-top: 3px;
}

.info-item strong {
display: block;
font-weight: 500;
margin-bottom: 5px;
font-size: 14px;
}

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

.hours-list {
display: flex;
flex-direction: column;
gap: 12px;
}

.hours-item {
display: flex;
justify-content: space-between;
font-size: 14px;
padding: 10px 0;
border-bottom: 1px solid var(--light-gray);
}

.hours-item:last-child {
border-bottom: none;
}

.map-section {
padding: 50px 0 0;
}

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

.map-container {
width: 100%;
height: 450px;
}

.map-container iframe {
width: 100%;
height: 100%;
}

.thankyou-section,
.error-section {
padding: 100px 0;
min-height: calc(100vh - 140px);
display: flex;
align-items: center;
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 700px;
margin: 0 auto;
}

.thankyou-icon {
margin-bottom: 2rem;
}

.thankyou-icon i {
font-size: 5rem;
color: var(--sage-gray);
}

.thankyou-content h1,
.error-content h1 {
font-size: 2.8rem;
margin-bottom: 1.5rem;
}

.thankyou-content p,
.error-content p {
font-size: 1.05rem;
margin-bottom: 1.2rem;
line-height: 1.7;
}

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

.error-number {
font-family: 'Cormorant Garamond', serif;
font-size: 8rem;
color: var(--muted-terracotta);
opacity: 0.2;
line-height: 1;
margin-bottom: 1rem;
}

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

.policy-content {
max-width: 900px;
margin: 0 auto;
background: var(--white);
padding: 50px;
}

.policy-content h1 {
font-size: 2.8rem;
margin-bottom: 1rem;
}

.policy-date {
font-size: 14px;
color: var(--muted-terracotta);
margin-bottom: 2rem;
font-style: italic;
}

.policy-content h2 {
font-size: 1.8rem;
margin-top: 2.5rem;
margin-bottom: 1rem;
}

.policy-content h3 {
font-size: 1.4rem;
margin-top: 1.5rem;
margin-bottom: 0.8rem;
}

.policy-content p {
margin-bottom: 1.2rem;
line-height: 1.8;
}

.policy-content ul {
margin-bottom: 1.2rem;
padding-left: 25px;
}

.policy-content li {
margin-bottom: 0.6rem;
line-height: 1.7;
}

.footer {
background: var(--smoked-iron);
color: var(--white);
padding: 30px 0;
}

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

.footer-info p {
font-size: 13px;
opacity: 0.8;
}

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

.footer-links a {
font-size: 13px;
color: var(--white);
opacity: 0.8;
transition: opacity 0.3s ease;
}

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

@media (max-width: 768px) {
.nav {
position: fixed;
top: 0;
right: -100%;
width: 70%;
max-width: 300px;
height: 100vh;
background: var(--white);
flex-direction: column;
padding: 80px 30px 30px;
box-shadow: -2px 0 10px rgba(0,0,0,0.1);
transition: right 0.3s ease;
z-index: 999;
align-items: flex-start;
gap: 25px;
}

.nav.active {
right: 0;
}

.nav-toggle {
display: flex;
z-index: 1000;
}

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

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

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

h1 {
font-size: 2.2rem;
}

h2 {
font-size: 1.8rem;
}

h3 {
font-size: 1.3rem;
}

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

.hero-content h1 {
font-size: 2.5rem;
}

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

.featured-grid,
.process-layout,
.gallery-layout {
grid-template-columns: 1fr;
gap: 40px;
}

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

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

.products-grid,
.approach-grid,
.tips-grid {
grid-template-columns: 1fr;
gap: 30px;
}

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

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

.thankyou-content h1,
.error-content h1 {
font-size: 2.2rem;
}

.error-number {
font-size: 5rem;
}

.policy-content {
padding: 30px 20px;
}

.policy-content h1 {
font-size: 2.2rem;
}

.policy-content h2 {
font-size: 1.5rem;
}

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

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

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

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

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

h1 {
font-size: 1.9rem;
}

h2 {
font-size: 1.6rem;
}

.hero-home {
padding: 50px 0;
}

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

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

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

.services-home,
.about-home,
.featured-home,
.process-home,
.cta,
.content-section,
.products,
.approach,
.tips {
padding: 50px 0;
}

.thankyou-icon i {
font-size: 3.5rem;
}

.error-number {
font-size: 4rem;
}
}
