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

:root {
--carbon-black: #1a1a1a;
--ink-charcoal: #2d2d2d;
--night-blue: #1e2433;
--icy-cobalt: #4a90e2;
--brushed-gold: #c9a961;
--dusty-blush: #d4a5a5;
--deep-teal: #2c5f5f;
--off-white: #f5f5f5;
--light-gray: #e0e0e0;
}

body {
font-family: 'Work Sans', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--off-white);
background-color: var(--carbon-black);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Cormorant Garamond', serif;
font-weight: 400;
line-height: 1.3;
color: var(--off-white);
}

h1 {
font-size: 2.8rem;
font-weight: 600;
}

h2 {
font-size: 2rem;
margin-bottom: 1.2rem;
}

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

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

header {
background: linear-gradient(135deg, var(--night-blue) 0%, var(--ink-charcoal) 100%);
padding: 0;
position: relative;
border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

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

.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
font-weight: 600;
color: var(--brushed-gold);
letter-spacing: 1px;
}

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

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

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

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

.hero {
background: linear-gradient(rgba(30, 36, 51, 0.85), rgba(26, 26, 26, 0.9)), url('https://images.unsplash.com/photo-1586281380349-632531db7ed4?w=1600&q=80');
background-size: cover;
background-position: center;
background-attachment: fixed;
padding: 120px 0;
text-align: center;
border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.hero h1 {
margin-bottom: 20px;
color: var(--brushed-gold);
}

.hero p {
font-size: 1.1rem;
margin-bottom: 30px;
color: var(--light-gray);
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.cta-btn {
display: inline-block;
padding: 12px 35px;
background: var(--icy-cobalt);
color: var(--off-white);
font-size: 14px;
font-weight: 500;
border: none;
cursor: pointer;
transition: all 0.3s ease;
letter-spacing: 0.5px;
}

.cta-btn:hover {
background: var(--deep-teal);
transform: translateY(-2px);
}

.intro {
padding: 70px 0;
background: var(--carbon-black);
}

.image-section-1,
.image-section-2,
.image-section-3 {
padding: 70px 0;
background: var(--ink-charcoal);
}

.image-section-2 {
background: var(--carbon-black);
}

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

.image-content-grid.reverse {
direction: ltr;
}

.image-content-grid.reverse .image-text {
order: 1;
}

.image-content-grid.reverse .image-wrapper {
order: 2;
}

.image-wrapper img {
width: 100%;
height: auto;
border: 1px solid rgba(74, 144, 226, 0.2);
transition: transform 0.3s ease;
}

.image-wrapper img:hover {
transform: scale(1.02);
}

.image-text h2 {
color: var(--brushed-gold);
margin-bottom: 20px;
}

.image-text p {
color: var(--light-gray);
line-height: 1.8;
margin-bottom: 25px;
}

.intro-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: start;
}

.intro-text h2 {
color: var(--brushed-gold);
margin-bottom: 20px;
}

.intro-text p {
color: var(--light-gray);
line-height: 1.8;
}

.intro-features {
display: flex;
flex-direction: column;
gap: 25px;
}

.feature-item {
gap: 15px;
align-items: start;
}

@media (min-width: 401px) {
.feature-item {
display: flex;
}
}

.feature-item i {
font-size: 1.5rem;
color: var(--icy-cobalt);
margin-top: 5px;
}

.feature-item h3 {
font-size: 1.1rem;
margin-bottom: 5px;
color: var(--off-white);
}

.feature-item p {
font-size: 14px;
color: var(--light-gray);
}

.services {
padding: 70px 0;
background: var(--ink-charcoal);
}

.services h2 {
text-align: center;
color: var(--brushed-gold);
margin-bottom: 50px;
}

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

.service-card {
background: var(--night-blue);
padding: 35px 25px;
text-align: center;
border: 1px solid rgba(74, 144, 226, 0.1);
transition: all 0.3s ease;
}

.service-card:hover {
border-color: var(--icy-cobalt);
transform: translateY(-5px);
}

.service-card i {
font-size: 2.5rem;
color: var(--icy-cobalt);
margin-bottom: 20px;
}

.service-card h3 {
margin-bottom: 15px;
color: var(--off-white);
}

.service-card p {
font-size: 14px;
color: var(--light-gray);
margin-bottom: 20px;
line-height: 1.7;
}

.service-link {
color: var(--brushed-gold);
font-size: 14px;
font-weight: 500;
display: inline-block;
position: relative;
}

.service-link::after {
content: '→';
margin-left: 8px;
transition: margin-left 0.3s ease;
}

.service-link:hover::after {
margin-left: 12px;
}

.process {
padding: 70px 0;
background: var(--carbon-black);
}

.process h2 {
text-align: center;
color: var(--brushed-gold);
margin-bottom: 50px;
}

.process-steps {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 20px;
}

.step {
text-align: center;
padding: 25px 15px;
background: var(--ink-charcoal);
border: 1px solid rgba(201, 169, 97, 0.2);
transition: all 0.3s ease;
}

.step:hover {
border-color: var(--brushed-gold);
}

.step-number {
display: block;
font-family: 'Cormorant Garamond', serif;
font-size: 2rem;
color: var(--icy-cobalt);
margin-bottom: 15px;
font-weight: 600;
}

.step h3 {
font-size: 1rem;
margin-bottom: 10px;
color: var(--off-white);
}

.step p {
font-size: 13px;
color: var(--light-gray);
}

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

.products h2 {
text-align: center;
color: var(--brushed-gold);
margin-bottom: 50px;
}

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

.product-card {
background: var(--night-blue);
padding: 35px 25px;
text-align: center;
border: 1px solid rgba(74, 144, 226, 0.1);
transition: all 0.3s ease;
}

.product-card.featured {
border-color: var(--brushed-gold);
transform: scale(1.05);
}

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

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

.product-card h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--off-white);
}

.price {
font-family: 'Cormorant Garamond', serif;
font-size: 2.2rem;
color: var(--brushed-gold);
margin-bottom: 25px;
font-weight: 600;
}

.product-card ul {
list-style: none;
margin-bottom: 30px;
text-align: left;
}

.product-card li {
font-size: 14px;
color: var(--light-gray);
padding: 8px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card li:last-child {
border-bottom: none;
}

.product-btn {
display: inline-block;
padding: 10px 30px;
background: transparent;
color: var(--icy-cobalt);
border: 1px solid var(--icy-cobalt);
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
}

.product-btn:hover {
background: var(--icy-cobalt);
color: var(--off-white);
}

.cta-section {
padding: 100px 0;
background: linear-gradient(rgba(30, 36, 51, 0.9), rgba(44, 95, 95, 0.9)), url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?w=1600&q=80');
background-size: cover;
background-position: center;
background-attachment: fixed;
text-align: center;
}

.cta-section h2 {
color: var(--brushed-gold);
margin-bottom: 15px;
}

.cta-section p {
font-size: 1.1rem;
color: var(--light-gray);
margin-bottom: 30px;
}

.page-hero {
background: linear-gradient(to bottom, var(--night-blue), var(--carbon-black));
padding: 60px 0;
text-align: center;
border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.page-hero h1 {
color: var(--brushed-gold);
margin-bottom: 15px;
}

.page-hero p {
font-size: 1.1rem;
color: var(--light-gray);
}

.content-section {
padding: 70px 0;
background: var(--carbon-black);
}

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

.content-text h2 {
color: var(--brushed-gold);
margin-bottom: 20px;
}

.content-text p {
color: var(--light-gray);
margin-bottom: 20px;
line-height: 1.8;
}

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

.content-image i {
font-size: 8rem;
color: var(--icy-cobalt);
opacity: 0.3;
}

.features-section {
padding: 70px 0;
background: var(--ink-charcoal);
}

.features-section h2 {
text-align: center;
color: var(--brushed-gold);
margin-bottom: 50px;
}

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

.feature-box {
background: var(--night-blue);
padding: 30px;
border: 1px solid rgba(74, 144, 226, 0.1);
transition: all 0.3s ease;
}

.feature-box:hover {
border-color: var(--icy-cobalt);
}

.feature-box i {
font-size: 2rem;
color: var(--icy-cobalt);
margin-bottom: 15px;
}

.feature-box h3 {
margin-bottom: 10px;
color: var(--off-white);
}

.feature-box p {
font-size: 14px;
color: var(--light-gray);
line-height: 1.7;
}

.approach-section {
padding: 70px 0;
background: var(--carbon-black);
}

.approach-section h2 {
text-align: center;
color: var(--brushed-gold);
margin-bottom: 40px;
}

.approach-content p {
color: var(--light-gray);
margin-bottom: 20px;
line-height: 1.8;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}

.materials-section {
padding: 70px 0;
background: var(--carbon-black);
}

.materials-section h2 {
text-align: center;
color: var(--brushed-gold);
margin-bottom: 50px;
}

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

.material-item h3 {
color: var(--icy-cobalt);
margin-bottom: 15px;
}

.material-item p {
color: var(--light-gray);
line-height: 1.8;
}

.quality-section {
padding: 70px 0;
background: var(--ink-charcoal);
text-align: center;
}

.quality-section h2 {
color: var(--brushed-gold);
margin-bottom: 30px;
}

.quality-section p {
color: var(--light-gray);
line-height: 1.8;
max-width: 800px;
margin: 0 auto;
}

.contact-hero {
background: linear-gradient(to bottom, var(--night-blue), var(--carbon-black));
padding: 60px 0;
text-align: center;
border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.contact-hero h1 {
color: var(--brushed-gold);
margin-bottom: 15px;
}

.contact-hero p {
font-size: 1.1rem;
color: var(--light-gray);
}

.contact-content {
padding: 70px 0;
background: var(--carbon-black);
}

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

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
color: var(--brushed-gold);
margin-bottom: 30px;
}

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

.form-group label {
display: block;
margin-bottom: 8px;
color: var(--light-gray);
font-size: 14px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
background: var(--ink-charcoal);
border: 1px solid rgba(74, 144, 226, 0.2);
color: var(--off-white);
font-family: 'Work Sans', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

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

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

.checkbox-group input[type="checkbox"] {
width: auto;
margin-top: 4px;
}

.checkbox-group span {
font-size: 13px;
color: var(--light-gray);
}

.checkbox-group a {
color: var(--icy-cobalt);
text-decoration: underline;
}

.submit-btn {
padding: 12px 35px;
background: var(--icy-cobalt);
color: var(--off-white);
border: none;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
letter-spacing: 0.5px;
}

.submit-btn:hover {
background: var(--deep-teal);
transform: translateY(-2px);
}

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

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

.contact-item i {
font-size: 1.5rem;
color: var(--icy-cobalt);
margin-top: 5px;
}

.contact-item h3 {
font-size: 1rem;
margin-bottom: 5px;
color: var(--off-white);
}

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

.map-section {
padding: 70px 0;
background: var(--ink-charcoal);
}

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

.map-wrapper {
border: 1px solid rgba(74, 144, 226, 0.2);
overflow: hidden;
}

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

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

.thankyou-content i {
font-size: 4rem;
color: var(--icy-cobalt);
margin-bottom: 30px;
}

.thankyou-content h1,
.error-content h1 {
color: var(--brushed-gold);
margin-bottom: 20px;
}

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

.error-content h2 {
color: var(--off-white);
margin-bottom: 15px;
}

.thankyou-content p,
.error-content p {
color: var(--light-gray);
margin-bottom: 30px;
line-height: 1.8;
}

.policy-section {
padding: 70px 0;
background: var(--carbon-black);
}

.policy-section h1 {
color: var(--brushed-gold);
margin-bottom: 10px;
text-align: center;
}

.policy-date {
text-align: center;
color: var(--light-gray);
font-size: 14px;
margin-bottom: 50px;
}

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

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

.policy-content h3 {
color: var(--off-white);
margin-top: 25px;
margin-bottom: 15px;
}

.policy-content h4 {
color: var(--light-gray);
margin-top: 20px;
margin-bottom: 10px;
font-size: 1rem;
}

.policy-content p {
color: var(--light-gray);
margin-bottom: 15px;
line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
margin-left: 25px;
margin-bottom: 20px;
color: var(--light-gray);
}

.policy-content li {
margin-bottom: 10px;
line-height: 1.7;
}

.policy-content strong {
color: var(--off-white);
}

.cookie-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
overflow-x: auto;
display: block;
}

.cookie-table th,
.cookie-table td {
padding: 12px;
text-align: left;
border: 1px solid rgba(74, 144, 226, 0.2);
}

.cookie-table th {
background: var(--ink-charcoal);
color: var(--icy-cobalt);
font-weight: 500;
}

.cookie-table td {
color: var(--light-gray);
font-size: 14px;
}

footer {
background: var(--night-blue);
padding: 30px 0;
border-top: 1px solid rgba(201, 169, 97, 0.2);
}

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

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

.footer-info p {
color: var(--light-gray);
font-size: 13px;
margin-bottom: 15px;
}

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

.footer-links a {
color: var(--light-gray);
font-size: 12px;
transition: color 0.3s ease;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--night-blue);
padding: 20px;
border-top: 2px solid var(--icy-cobalt);
z-index: 1000;
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;
}

.privacy-content p {
color: var(--light-gray);
font-size: 14px;
margin: 0;
}

#acceptPrivacy {
padding: 10px 25px;
background: var(--icy-cobalt);
color: var(--off-white);
border: none;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
}

#acceptPrivacy:hover {
background: var(--deep-teal);
}

@media (max-width: 1024px) {
.intro-grid,
.content-grid,
.image-content-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.image-content-grid.reverse .image-text,
.image-content-grid.reverse .image-wrapper {
order: 0;
}

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

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

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

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

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

h2 {
font-size: 1.6rem;
}

nav ul {
gap: 15px;
}

nav a {
font-size: 13px;
}

.hero,
.page-hero {
padding: 60px 0;
}

.hero {
background-attachment: scroll;
}

.cta-section {
background-attachment: scroll;
}

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

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

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

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

@media (max-width: 480px) {
.header-container {
flex-direction: column;
gap: 15px;
}

nav ul {
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}

h1 {
font-size: 1.6rem;
}

h2 {
font-size: 1.4rem;
}

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

.step-number {
font-size: 1.5rem;
}
}

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

.logo {
font-size: 1.2rem;
}

h1 {
font-size: 1.4rem;
}

h2 {
font-size: 1.2rem;
}

.cta-btn,
.submit-btn {
padding: 10px 25px;
font-size: 13px;
}
}
