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

:root {
--oatmeal-linen: #F2EFE9;
--deep-espresso: #2D2926;
--dusty-bronze: #A68966;
--white: #FFFFFF;
--light-gray: #E8E5DF;
--medium-gray: #C4C0B8;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
line-height: 1.7;
color: var(--deep-espresso);
background-color: var(--oatmeal-linen);
letter-spacing: 0.3px;
}

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
font-weight: 600;
line-height: 1.3;
letter-spacing: 0.5px;
margin-bottom: 16px;
}

h1 {
font-size: 36px;
}

h2 {
font-size: 28px;
}

h3 {
font-size: 20px;
}

a {
text-decoration: none;
color: inherit;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.header {
background-color: var(--white);
padding: 16px 0;
box-shadow: 0 2px 12px rgba(45, 41, 38, 0.08);
position: relative;
z-index: 1000;
}

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

.logo {
font-family: 'Playfair Display', serif;
font-size: 20px;
font-weight: 700;
color: var(--deep-espresso);
letter-spacing: 0.5px;
}

.menu-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 8px;
z-index: 1001;
}

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

.nav {
display: flex;
gap: 28px;
}

.nav a {
font-size: 13px;
font-weight: 500;
color: var(--deep-espresso);
letter-spacing: 0.5px;
position: relative;
padding: 4px 0;
}

.nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 1px;
background-color: var(--dusty-bronze);
transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero {
padding: 80px 0;
background: linear-gradient(135deg, var(--oatmeal-linen) 0%, var(--light-gray) 100%);
text-align: center;
}

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

.hero h1 {
font-size: 42px;
margin-bottom: 20px;
color: var(--deep-espresso);
}

.hero p {
font-size: 16px;
margin-bottom: 32px;
color: var(--deep-espresso);
opacity: 0.85;
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 12px 32px;
font-size: 13px;
font-weight: 600;
letter-spacing: 0.8px;
text-transform: uppercase;
border-radius: 2px;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
border: none;
}

.btn-primary {
background-color: var(--dusty-bronze);
color: var(--white);
}

.btn-primary:hover {
background-color: #8F7555;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(166, 137, 102, 0.3);
}

.btn-secondary {
background-color: transparent;
color: var(--deep-espresso);
border: 1px solid var(--deep-espresso);
}

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

section {
padding: 60px 0;
}

.services {
background-color: var(--white);
}

.services h2, .features h2, .testimonials h2, .about h2, .cta h2 {
text-align: center;
margin-bottom: 48px;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 32px;
}

.service-card {
text-align: center;
padding: 32px 24px;
background-color: var(--oatmeal-linen);
border-radius: 4px;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(45, 41, 38, 0.12);
}

.service-card i {
font-size: 32px;
color: var(--dusty-bronze);
margin-bottom: 20px;
}

.service-card h3 {
margin-bottom: 12px;
}

.service-card p {
font-size: 13px;
line-height: 1.6;
}

.about {
background-color: var(--oatmeal-linen);
}

.image-gallery {
background-color: var(--oatmeal-linen);
}

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

.gallery-item {
width: 100%;
height: 400px;
overflow: hidden;
border-radius: 4px;
box-shadow: 0 8px 32px rgba(45, 41, 38, 0.15);
}

.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
}

.gallery-content h2 {
margin-bottom: 20px;
text-align: left;
}

.gallery-content p {
font-size: 14px;
line-height: 1.8;
}

.image-feature {
background-color: var(--white);
}

.feature-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: center;
}

.feature-image {
width: 100%;
height: 400px;
overflow: hidden;
border-radius: 4px;
box-shadow: 0 8px 32px rgba(45, 41, 38, 0.15);
}

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

.feature-content h2 {
margin-bottom: 20px;
text-align: left;
}

.feature-content p {
font-size: 14px;
line-height: 1.8;
}

.about {
background-color: var(--oatmeal-linen);
}

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

.about-text p {
margin-bottom: 16px;
font-size: 14px;
}

.about-text .btn-secondary {
margin-top: 16px;
}

.about-image img {
border-radius: 4px;
box-shadow: 0 8px 32px rgba(45, 41, 38, 0.15);
}

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

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 32px;
}

.feature-item {
text-align: center;
padding: 24px;
}

.feature-item i {
font-size: 28px;
color: var(--dusty-bronze);
margin-bottom: 16px;
}

.feature-item h3 {
font-size: 18px;
margin-bottom: 8px;
}

.feature-item p {
font-size: 13px;
}

.cta {
background: linear-gradient(135deg, var(--dusty-bronze) 0%, #8F7555 100%);
text-align: center;
color: var(--white);
}

.cta h2, .cta p {
color: var(--white);
}

.cta p {
margin-bottom: 28px;
font-size: 15px;
}

.testimonials {
background-color: var(--oatmeal-linen);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 32px;
}

.testimonial {
background-color: var(--white);
padding: 28px;
border-radius: 4px;
border-left: 3px solid var(--dusty-bronze);
}

.testimonial p {
font-size: 14px;
font-style: italic;
margin-bottom: 16px;
line-height: 1.7;
}

.testimonial cite {
font-size: 12px;
font-style: normal;
font-weight: 600;
color: var(--dusty-bronze);
}

.page-hero {
background: linear-gradient(135deg, var(--light-gray) 0%, var(--oatmeal-linen) 100%);
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
margin-bottom: 12px;
}

.page-hero p {
font-size: 15px;
opacity: 0.85;
}

.products {
background-color: var(--white);
}

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

.product-card {
background-color: var(--oatmeal-linen);
border-radius: 4px;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 32px rgba(45, 41, 38, 0.15);
}

.product-image {
width: 100%;
height: 280px;
overflow: hidden;
background-color: var(--light-gray);
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-info {
padding: 28px;
}

.product-info h3 {
margin-bottom: 12px;
}

.product-info p {
font-size: 13px;
margin-bottom: 16px;
line-height: 1.6;
}

.product-features {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 20px;
}

.product-features span {
font-size: 12px;
display: flex;
align-items: center;
gap: 8px;
}

.product-features i {
color: var(--dusty-bronze);
font-size: 12px;
}

.product-price {
font-family: 'Playfair Display', serif;
font-size: 28px;
font-weight: 700;
color: var(--dusty-bronze);
margin-bottom: 20px;
}

.product-info-section {
background-color: var(--oatmeal-linen);
}

.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 32px;
}

.info-item {
text-align: center;
padding: 24px;
}

.info-item i {
font-size: 32px;
color: var(--dusty-bronze);
margin-bottom: 16px;
}

.info-item h3 {
margin-bottom: 8px;
}

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

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

.customization p {
max-width: 700px;
margin: 0 auto 28px;
font-size: 14px;
}

.process {
background-color: var(--white);
}

.process h2 {
text-align: center;
margin-bottom: 48px;
}

.process-steps {
display: flex;
flex-direction: column;
gap: 40px;
}

.step {
display: grid;
grid-template-columns: 80px 1fr;
gap: 28px;
padding: 32px;
background-color: var(--oatmeal-linen);
border-radius: 4px;
}

.step-number {
font-family: 'Playfair Display', serif;
font-size: 36px;
font-weight: 700;
color: var(--dusty-bronze);
opacity: 0.6;
}

.step-content h3 {
margin-bottom: 12px;
}

.step-content p {
font-size: 14px;
margin-bottom: 16px;
}

.step-content ul {
list-style: none;
padding-left: 0;
}

.step-content ul li {
font-size: 13px;
padding: 6px 0;
padding-left: 24px;
position: relative;
}

.step-content ul li::before {
content: '•';
position: absolute;
left: 8px;
color: var(--dusty-bronze);
font-weight: bold;
}

.commitment {
background-color: var(--oatmeal-linen);
}

.commitment h2 {
text-align: center;
margin-bottom: 48px;
}

.commitment-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 32px;
}

.commitment-item {
text-align: center;
padding: 24px;
}

.commitment-item i {
font-size: 32px;
color: var(--dusty-bronze);
margin-bottom: 16px;
}

.commitment-item h3 {
margin-bottom: 8px;
}

.commitment-item p {
font-size: 13px;
}

.timeline {
background-color: var(--white);
}

.timeline h2 {
text-align: center;
margin-bottom: 20px;
}

.timeline > p {
text-align: center;
max-width: 700px;
margin: 0 auto 32px;
font-size: 14px;
}

.timeline-content {
max-width: 700px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 20px;
}

.timeline-item {
padding: 20px 24px;
background-color: var(--oatmeal-linen);
border-left: 3px solid var(--dusty-bronze);
border-radius: 2px;
font-size: 14px;
}

.timeline-item strong {
color: var(--dusty-bronze);
font-weight: 600;
}

.timeline-note {
text-align: center;
margin-top: 28px;
font-size: 13px;
font-style: italic;
opacity: 0.8;
}

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

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

.contact-info h2, .contact-form-wrapper h2 {
margin-bottom: 20px;
}

.contact-info p {
font-size: 14px;
margin-bottom: 28px;
}

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

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

.contact-item i {
font-size: 20px;
color: var(--dusty-bronze);
margin-top: 4px;
flex-shrink: 0;
}

.contact-item strong {
display: block;
font-weight: 600;
margin-bottom: 4px;
font-size: 14px;
}

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

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

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

.form-group label {
font-size: 13px;
font-weight: 600;
margin-bottom: 8px;
color: var(--deep-espresso);
}

.form-group input,
.form-group textarea {
padding: 12px 16px;
font-family: 'Montserrat', sans-serif;
font-size: 13px;
border: 1px solid var(--medium-gray);
border-radius: 2px;
background-color: var(--white);
color: var(--deep-espresso);
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--dusty-bronze);
box-shadow: 0 0 0 3px rgba(166, 137, 102, 0.1);
}

.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;
font-size: 12px;
font-weight: 400;
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
margin-top: 2px;
cursor: pointer;
flex-shrink: 0;
}

.checkbox-label span {
line-height: 1.5;
}

.map-section {
background-color: var(--oatmeal-linen);
}

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

.map-wrapper {
border-radius: 4px;
overflow: hidden;
box-shadow: 0 8px 24px rgba(45, 41, 38, 0.12);
}

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

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

.thankyou-content i {
font-size: 64px;
color: var(--dusty-bronze);
margin-bottom: 24px;
}

.thankyou-content h1, .error-content h1 {
margin-bottom: 20px;
}

.thankyou-content p, .error-content p {
font-size: 15px;
margin-bottom: 20px;
line-height: 1.7;
}

.thankyou-info {
background-color: var(--oatmeal-linen);
padding: 24px;
border-radius: 4px;
margin: 28px 0;
}

.thankyou-info p {
margin-bottom: 8px;
font-size: 14px;
}

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

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

.error-number {
font-family: 'Playfair Display', serif;
font-size: 120px;
font-weight: 700;
color: var(--dusty-bronze);
opacity: 0.3;
line-height: 1;
margin-bottom: 20px;
}

.policy-section {
background-color: var(--white);
padding: 60px 0;
}

.policy-section h1 {
margin-bottom: 8px;
}

.policy-date {
font-size: 13px;
color: var(--dusty-bronze);
margin-bottom: 32px;
font-weight: 600;
}

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

.policy-content h2 {
margin-top: 40px;
margin-bottom: 16px;
font-size: 24px;
}

.policy-content h3 {
margin-top: 24px;
margin-bottom: 12px;
font-size: 18px;
}

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

.policy-content ul, .policy-content ol {
margin-bottom: 16px;
padding-left: 28px;
}

.policy-content li {
margin-bottom: 8px;
font-size: 14px;
line-height: 1.7;
}

.policy-content strong {
font-weight: 600;
color: var(--deep-espresso);
}

.footer {
background-color: var(--deep-espresso);
color: var(--white);
padding: 28px 0;
}

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

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

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

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: var(--deep-espresso);
color: var(--white);
padding: 20px;
box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
z-index: 10000;
transform: translateY(100%);
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-popup.show {
transform: translateY(0);
}

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

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

.privacy-buttons {
display: flex;
gap: 12px;
}

.btn-accept, .btn-learn {
padding: 10px 24px;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.5px;
border-radius: 2px;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-accept {
background-color: var(--dusty-bronze);
color: var(--white);
border: none;
}

.btn-accept:hover {
background-color: #8F7555;
}

.btn-learn {
background-color: transparent;
color: var(--white);
border: 1px solid var(--white);
display: inline-block;
}

.btn-learn:hover {
background-color: var(--white);
color: var(--deep-espresso);
}

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

.nav {
position: fixed;
top: 0;
right: -100%;
width: 280px;
height: 100vh;
background-color: var(--white);
flex-direction: column;
padding: 80px 32px 32px;
box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
gap: 20px;
}

.nav.active {
right: 0;
}

.nav a {
font-size: 15px;
padding: 12px 0;
border-bottom: 1px solid var(--light-gray);
}

.hero h1 {
font-size: 32px;
}

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

h1 {
font-size: 30px;
}

h2 {
font-size: 24px;
}

.about-content {
grid-template-columns: 1fr;
gap: 32px;
}

.gallery-wrapper {
grid-template-columns: 1fr;
gap: 32px;
}

.gallery-item {
height: 300px;
}

.feature-wrapper {
grid-template-columns: 1fr;
gap: 32px;
}

.feature-image {
height: 300px;
}

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

.process-steps {
gap: 28px;
}

.step {
grid-template-columns: 1fr;
gap: 16px;
padding: 24px;
}

.step-number {
font-size: 28px;
}

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

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

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

.privacy-buttons {
width: 100%;
justify-content: center;
}

.error-number {
font-size: 80px;
}

.thankyou-section, .error-section {
min-height: calc(100vh - 250px);
}
}

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

.hero {
padding: 60px 0;
}

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

section {
padding: 48px 0;
}

.services-grid, .features-grid, .products-grid, .info-grid, .commitment-grid {
grid-template-columns: 1fr;
gap: 24px;
}

.btn-primary, .btn-secondary {
padding: 10px 24px;
font-size: 12px;
width: 100%;
}

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

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

@media (min-width: 320px) and (max-width: 374px) {
body {
font-size: 13px;
}

.logo {
font-size: 16px;
}

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

h2 {
font-size: 20px;
}

.error-number {
font-size: 60px;
}
}
