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

:root {
--obsidian: #1A1A1A;
--pearl: #F0F0F0;
--sage: #A8E6CF;
--accent: #7DD3C0;
--text-dark: #2C2C2C;
--text-light: #F5F5F5;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
line-height: 1.6;
color: var(--text-dark);
background: var(--pearl);
overflow-x: hidden;
}

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

h1 {
font-size: 2.2rem;
}

h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
}

h3 {
font-size: 1.3rem;
margin-bottom: 0.8rem;
}

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

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

header {
background: rgba(26, 26, 26, 0.95);
backdrop-filter: blur(10px);
padding: 0.8rem 0;
position: relative;
z-index: 1000;
}

nav {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.nav-brand {
font-family: 'Cormorant Garamond', serif;
font-size: 1.3rem;
font-weight: 600;
color: var(--sage);
letter-spacing: 0.5px;
}

.nav-toggle {
display: none;
background: none;
border: none;
color: var(--text-light);
font-size: 1.3rem;
cursor: pointer;
padding: 0.3rem;
}

.nav-menu {
display: flex;
list-style: none;
gap: 1.8rem;
align-items: center;
}

.nav-menu a {
color: var(--text-light);
font-size: 0.85rem;
font-weight: 400;
letter-spacing: 0.3px;
padding: 0.3rem 0;
position: relative;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
width: 100%;
}

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

.hero {
background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(42, 42, 42, 0.7) 100%), url('../luminous_gallery/backphoto.png') center/cover no-repeat;
min-height: 70vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 3rem 1.5rem;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(168, 230, 207, 0.1) 0%, transparent 50%);
}

.hero-content {
position: relative;
z-index: 1;
max-width: 700px;
}

.hero h1 {
color: var(--text-light);
font-size: 2.5rem;
margin-bottom: 1rem;
font-weight: 300;
letter-spacing: 1px;
}

.hero p {
color: var(--pearl);
font-size: 1rem;
margin-bottom: 1.8rem;
opacity: 0.9;
}

.btn-primary {
display: inline-block;
background: var(--sage);
color: var(--obsidian);
padding: 0.7rem 1.8rem;
border-radius: 2px;
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 0.5px;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

.btn-primary:hover {
background: var(--accent);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(168, 230, 207, 0.3);
}

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--obsidian);
padding: 0.7rem 1.8rem;
border-radius: 2px;
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 0.5px;
border: 1px solid var(--obsidian);
transition: all 0.3s ease;
}

.btn-secondary:hover {
background: var(--obsidian);
color: var(--text-light);
}

.btn-link {
color: var(--sage);
font-size: 0.85rem;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 0.3rem;
}

.btn-link:hover {
color: var(--accent);
}

section {
padding: 3.5rem 0;
}

.services {
background: var(--pearl);
}

.services h2 {
text-align: center;
color: var(--obsidian);
margin-bottom: 2.5rem;
}

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

.service-card {
background: white;
padding: 2rem 1.5rem;
border-radius: 3px;
text-align: center;
transition: all 0.3s ease;
border: 1px solid rgba(26, 26, 26, 0.05);
}

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

.service-card i {
font-size: 2.2rem;
color: var(--sage);
margin-bottom: 1rem;
}

.service-card h3 {
color: var(--obsidian);
margin-bottom: 0.8rem;
font-size: 1.2rem;
}

.service-card p {
color: var(--text-dark);
font-size: 0.85rem;
margin-bottom: 1.2rem;
line-height: 1.7;
}

.about {
background: white;
}

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

.about-text h2 {
color: var(--obsidian);
margin-bottom: 1.2rem;
}

.about-text p {
color: var(--text-dark);
font-size: 0.9rem;
margin-bottom: 1rem;
line-height: 1.8;
}

.about-text .btn-secondary {
margin-top: 1rem;
}

.about-image img {
width: 100%;
border-radius: 3px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.products {
background: var(--pearl);
}

.products h2 {
text-align: center;
color: var(--obsidian);
margin-bottom: 2.5rem;
}

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

.product-card {
background: white;
padding: 2rem 1.5rem;
border-radius: 3px;
text-align: center;
transition: all 0.3s ease;
border: 1px solid rgba(26, 26, 26, 0.05);
}

.product-card.featured {
border: 2px solid var(--sage);
transform: scale(1.03);
}

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

.product-card.featured:hover {
transform: translateY(-5px) scale(1.03);
}

.product-info h3 {
color: var(--obsidian);
margin-bottom: 1rem;
font-size: 1.3rem;
}

.product-info p {
color: var(--text-dark);
font-size: 0.85rem;
margin-bottom: 1.2rem;
line-height: 1.7;
}

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

.process {
background: white;
}

.process h2 {
text-align: center;
color: var(--obsidian);
margin-bottom: 2.5rem;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2rem;
}

.step {
text-align: center;
padding: 1.5rem 1rem;
}

.step-number {
font-size: 2.5rem;
font-family: 'Cormorant Garamond', serif;
color: var(--sage);
margin-bottom: 0.8rem;
font-weight: 300;
}

.step h3 {
color: var(--obsidian);
margin-bottom: 0.6rem;
font-size: 1.1rem;
}

.step p {
color: var(--text-dark);
font-size: 0.85rem;
line-height: 1.6;
}

.cta {
background: linear-gradient(135deg, var(--obsidian) 0%, #2a2a2a 100%);
text-align: center;
padding: 3.5rem 1.5rem;
}

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

.cta p {
color: var(--pearl);
font-size: 1rem;
margin-bottom: 1.8rem;
opacity: 0.9;
}

.page-hero {
background: linear-gradient(135deg, var(--obsidian) 0%, #2a2a2a 100%);
padding: 3rem 1.5rem;
text-align: center;
}

.page-hero h1 {
color: var(--text-light);
font-size: 2.2rem;
margin-bottom: 0.8rem;
}

.page-hero p {
color: var(--pearl);
font-size: 1rem;
opacity: 0.9;
}

.content-section {
background: white;
}

.content-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.content-text h2 {
color: var(--obsidian);
margin-bottom: 1.2rem;
}

.content-text p {
color: var(--text-dark);
font-size: 0.9rem;
margin-bottom: 1rem;
line-height: 1.8;
}

.content-image img {
width: 100%;
border-radius: 3px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features {
background: var(--pearl);
}

.features h2 {
text-align: center;
color: var(--obsidian);
margin-bottom: 2.5rem;
}

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

.feature-item {
background: white;
padding: 1.8rem 1.3rem;
border-radius: 3px;
text-align: center;
border: 1px solid rgba(26, 26, 26, 0.05);
}

.feature-item i {
font-size: 2rem;
color: var(--sage);
margin-bottom: 1rem;
}

.feature-item h3 {
color: var(--obsidian);
margin-bottom: 0.7rem;
font-size: 1.1rem;
}

.feature-item p {
color: var(--text-dark);
font-size: 0.85rem;
line-height: 1.7;
}

.benefits {
background: white;
}

.benefits h2 {
text-align: center;
color: var(--obsidian);
margin-bottom: 2.5rem;
}

.benefits-list {
display: grid;
gap: 1.5rem;
max-width: 800px;
margin: 0 auto;
}

.benefit-item {
display: flex;
gap: 1.2rem;
align-items: flex-start;
padding: 1.2rem;
background: var(--pearl);
border-radius: 3px;
}

.benefit-item i {
font-size: 1.5rem;
color: var(--sage);
flex-shrink: 0;
margin-top: 0.2rem;
}

.benefit-item h3 {
color: var(--obsidian);
margin-bottom: 0.4rem;
font-size: 1rem;
}

.benefit-item p {
color: var(--text-dark);
font-size: 0.85rem;
line-height: 1.7;
}

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

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

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

.testimonial {
background: white;
padding: 2rem 1.5rem;
border-radius: 3px;
border-left: 3px solid var(--sage);
}

.testimonial p {
color: var(--text-dark);
font-size: 0.9rem;
line-height: 1.8;
margin-bottom: 1.2rem;
font-style: italic;
}

.testimonial-author {
color: var(--obsidian);
font-weight: 500;
font-size: 0.85rem;
}

.contact-hero {
background: linear-gradient(135deg, var(--obsidian) 0%, #2a2a2a 100%);
padding: 3rem 1.5rem;
text-align: center;
}

.contact-hero h1 {
color: var(--text-light);
font-size: 2.2rem;
margin-bottom: 0.8rem;
}

.contact-hero p {
color: var(--pearl);
font-size: 1rem;
opacity: 0.9;
}

.contact-content {
background: white;
padding: 3.5rem 0;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
color: var(--obsidian);
margin-bottom: 1.5rem;
font-size: 1.5rem;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.2rem;
}

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

.form-group label {
color: var(--text-dark);
font-size: 0.85rem;
font-weight: 500;
}

.form-group input,
.form-group textarea {
padding: 0.7rem;
border: 1px solid rgba(26, 26, 26, 0.2);
border-radius: 2px;
font-family: 'Montserrat', sans-serif;
font-size: 0.85rem;
transition: border-color 0.3s ease;
}

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

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

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

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 0.6rem;
font-size: 0.8rem;
line-height: 1.5;
cursor: pointer;
}

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

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

.contact-info {
display: flex;
flex-direction: column;
gap: 1.8rem;
}

.info-item {
display: flex;
gap: 1rem;
align-items: flex-start;
}

.info-item i {
font-size: 1.3rem;
color: var(--sage);
flex-shrink: 0;
margin-top: 0.2rem;
}

.info-item h3 {
color: var(--obsidian);
margin-bottom: 0.3rem;
font-size: 1rem;
}

.info-item p {
color: var(--text-dark);
font-size: 0.85rem;
line-height: 1.6;
}

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

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

.map-wrapper {
border-radius: 3px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thankyou-section,
.error-section {
min-height: calc(100vh - 120px);
display: flex;
align-items: center;
justify-content: center;
background: var(--pearl);
padding: 3rem 1.5rem;
}

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

.thankyou-content i {
font-size: 4rem;
color: var(--sage);
margin-bottom: 1.5rem;
}

.thankyou-content h1,
.error-content h1 {
color: var(--obsidian);
margin-bottom: 1rem;
font-size: 2rem;
}

.thankyou-content p,
.error-content p {
color: var(--text-dark);
font-size: 1rem;
margin-bottom: 2rem;
line-height: 1.8;
}

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

.error-code {
font-size: 6rem;
font-family: 'Cormorant Garamond', serif;
color: var(--sage);
margin-bottom: 1rem;
font-weight: 300;
}

.policy-section {
background: white;
padding: 3.5rem 0;
}

.policy-section h1 {
color: var(--obsidian);
margin-bottom: 0.5rem;
font-size: 2rem;
}

.policy-date {
color: var(--text-dark);
font-size: 0.8rem;
margin-bottom: 2rem;
opacity: 0.7;
}

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

.policy-content h2 {
color: var(--obsidian);
margin-top: 2rem;
margin-bottom: 1rem;
font-size: 1.5rem;
}

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

.policy-content h4 {
color: var(--obsidian);
margin-top: 1rem;
margin-bottom: 0.6rem;
font-size: 1rem;
}

.policy-content p {
color: var(--text-dark);
font-size: 0.9rem;
margin-bottom: 1rem;
line-height: 1.8;
}

.policy-content ul {
margin-left: 1.5rem;
margin-bottom: 1rem;
}

.policy-content li {
color: var(--text-dark);
font-size: 0.9rem;
margin-bottom: 0.5rem;
line-height: 1.7;
}

.policy-content a {
color: var(--sage);
text-decoration: underline;
}

footer {
background: var(--obsidian);
padding: 1.5rem 0;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

.footer-info p {
color: var(--pearl);
font-size: 0.8rem;
}

.footer-links {
display: flex;
gap: 1.2rem;
flex-wrap: wrap;
}

.footer-links a {
color: var(--pearl);
font-size: 0.75rem;
opacity: 0.8;
transition: opacity 0.3s ease;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--obsidian);
padding: 1.2rem;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.3s ease;
}

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

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

.privacy-content p {
color: var(--pearl);
font-size: 0.85rem;
line-height: 1.6;
flex: 1;
min-width: 250px;
}

.privacy-content a {
color: var(--sage);
text-decoration: underline;
}

.btn-accept {
background: var(--sage);
color: var(--obsidian);
padding: 0.6rem 1.5rem;
border: none;
border-radius: 2px;
font-size: 0.85rem;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
}

.btn-accept:hover {
background: var(--accent);
}

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

.nav-menu {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
height: calc(100vh - 60px);
background: var(--obsidian);
flex-direction: column;
justify-content: flex-start;
padding: 2rem;
gap: 1.5rem;
transition: left 0.3s ease;
}

.nav-menu.active {
left: 0;
}

.nav-menu li {
width: 100%;
text-align: center;
}

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

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

h1 {
font-size: 1.8rem;
}

h2 {
font-size: 1.5rem;
}

.about-content,
.content-layout,
.contact-grid {
grid-template-columns: 1fr;
gap: 2rem;
}

.content-layout .content-image {
order: -1;
}

.services-grid,
.products-grid,
.process-steps,
.features-grid {
grid-template-columns: 1fr;
}

.product-card.featured {
transform: scale(1);
}

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

section {
padding: 2.5rem 0;
}

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

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

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

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

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

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

.hero h1 {
font-size: 1.5rem;
}

h2 {
font-size: 1.3rem;
}

.btn-primary,
.btn-secondary {
padding: 0.6rem 1.3rem;
font-size: 0.8rem;
}

.service-card,
.product-card,
.feature-item {
padding: 1.5rem 1rem;
}

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

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

@media (min-width: 320px) and (max-width: 374px) {
.container {
padding: 0 1rem;
}

.hero {
padding: 2rem 1rem;
min-height: 60vh;
}

.hero h1 {
font-size: 1.3rem;
}

.hero p {
font-size: 0.85rem;
}

section {
padding: 2rem 0;
}
}
