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

:root {
--primary: #2c3e50;
--gold: #c9a961;
--bronze: #8b7355;
--cream: #f8f6f3;
--white: #ffffff;
--text: #1a1a1a;
--text-light: #666;
}

body {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--text);
background: var(--white);
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

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(--primary);
color: var(--white);
padding: 20px;
z-index: 9999;
transform: translateY(100%);
transition: all 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: 20px;
flex-wrap: wrap;
}

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

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

.privacy-buttons a {
color: var(--gold);
text-decoration: underline;
font-size: 14px;
}

.privacy-buttons button {
background: var(--gold);
color: var(--white);
border: none;
padding: 10px 25px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
border-radius: 3px;
transition: all 0.3s ease;
}

.privacy-buttons button:hover {
background: var(--bronze);
}

.header {
background: var(--white);
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
transition: transform 0.3s ease;
}

.header-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 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(--primary);
}

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

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

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

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

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

.menu-toggle span {
width: 25px;
height: 2px;
background: var(--primary);
transition: all 0.3s ease;
}

.hero-modern {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary) 0%, #1a2634 100%);
overflow: hidden;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(201,169,97,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
opacity: 0.3;
}

.hero-modern-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 900px;
padding: 40px 20px;
}

.hero-badge {
display: inline-block;
background: rgba(201,169,97,0.2);
color: var(--gold);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 500;
letter-spacing: 1px;
margin-bottom: 30px;
border: 1px solid rgba(201,169,97,0.3);
}

.hero-modern-content h1 {
font-size: 4rem;
color: var(--white);
margin-bottom: 25px;
line-height: 1.2;
}

.hero-highlight {
color: var(--gold);
display: block;
}

.hero-subtitle {
font-size: 1.1rem;
color: rgba(255,255,255,0.9);
margin-bottom: 40px;
line-height: 1.8;
}

.hero-stats {
display: flex;
justify-content: center;
gap: 60px;
margin-bottom: 50px;
}

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

.stat-number {
font-family: 'Cormorant Garamond', serif;
font-size: 2.5rem;
font-weight: 600;
color: var(--gold);
margin-bottom: 5px;
}

.stat-label {
font-size: 13px;
color: rgba(255,255,255,0.8);
text-transform: uppercase;
letter-spacing: 1px;
}

.hero-actions {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.btn-primary {
background: var(--gold);
color: var(--white);
padding: 16px 40px;
font-size: 15px;
font-weight: 500;
border-radius: 3px;
transition: all 0.3s ease;
display: inline-block;
}

.btn-primary:hover {
background: var(--bronze);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(201,169,97,0.3);
}

.btn-primary.large {
padding: 18px 50px;
font-size: 16px;
}

.btn-secondary {
background: transparent;
color: var(--white);
padding: 16px 40px;
font-size: 15px;
font-weight: 500;
border: 2px solid var(--gold);
border-radius: 3px;
transition: all 0.3s ease;
display: inline-block;
}

.btn-secondary:hover {
background: var(--gold);
}

.hero-scroll {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
color: rgba(255,255,255,0.6);
font-size: 12px;
letter-spacing: 2px;
text-transform: uppercase;
}

.scroll-line {
width: 1px;
height: 40px;
background: linear-gradient(to bottom, var(--gold), transparent);
animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
0%, 100% { opacity: 0; transform: translateY(0); }
50% { opacity: 1; transform: translateY(10px); }
}

.section-header {
margin-bottom: 50px;
}

.section-header.centered {
text-align: center;
}

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

.philosophy {
padding: 100px 20px;
background: var(--white);
}

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

.philosophy-image {
position: relative;
}

.philosophy-image img {
border-radius: 5px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.image-caption {
position: absolute;
bottom: 20px;
left: 20px;
background: rgba(44,62,80,0.9);
color: var(--white);
padding: 10px 20px;
font-size: 13px;
border-radius: 3px;
}

.lead-text {
font-size: 1.1rem;
color: var(--text);
margin-bottom: 30px;
line-height: 1.8;
}

.philosophy-points {
display: flex;
flex-direction: column;
gap: 25px;
}

.point-item {
display: flex;
gap: 20px;
}

.point-icon {
color: var(--gold);
font-size: 1.2rem;
flex-shrink: 0;
margin-top: 5px;
}

.point-text h3 {
color: var(--primary);
margin-bottom: 8px;
font-size: 1.2rem;
}

.point-text p {
color: var(--text-light);
font-size: 14px;
line-height: 1.7;
}

.expertise {
padding: 100px 20px;
background: var(--cream);
}

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

.expertise-card {
background: var(--white);
padding: 40px 30px;
border-radius: 5px;
transition: all 0.3s ease;
}

.expertise-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.expertise-number {
font-family: 'Cormorant Garamond', serif;
font-size: 3rem;
color: var(--gold);
font-weight: 600;
margin-bottom: 20px;
opacity: 0.3;
}

.expertise-card h3 {
color: var(--primary);
margin-bottom: 15px;
}

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

.card-link {
color: var(--gold);
font-weight: 500;
font-size: 14px;
}

.card-link:hover {
color: var(--bronze);
}

.showcase {
padding: 100px 20px;
background: var(--white);
}

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

.showcase-item {
position: relative;
overflow: hidden;
border-radius: 5px;
cursor: pointer;
}

.showcase-item.large {
grid-row: span 2;
}

.showcase-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.5s ease;
}

.showcase-item:hover img {
transform: scale(1.05);
}

.showcase-info {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
color: var(--white);
padding: 30px;
transform: translateY(60%);
transition: all 0.3s ease;
}

.showcase-item:hover .showcase-info {
transform: translateY(0);
}

.showcase-tag {
display: inline-block;
background: var(--gold);
padding: 5px 15px;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 10px;
border-radius: 3px;
}

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

.showcase-info p {
font-size: 13px;
opacity: 0.9;
}

.process-section {
padding: 100px 20px;
background: var(--cream);
}

.process-timeline {
max-width: 800px;
margin: 0 auto;
position: relative;
}

.process-timeline::before {
content: '';
position: absolute;
left: 30px;
top: 0;
bottom: 0;
width: 2px;
background: var(--gold);
}

.timeline-item {
display: flex;
gap: 30px;
margin-bottom: 50px;
position: relative;
}

.timeline-marker {
width: 60px;
height: 60px;
background: var(--gold);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
font-weight: 600;
flex-shrink: 0;
box-shadow: 0 5px 20px rgba(201,169,97,0.3);
}

.timeline-content h3 {
color: var(--primary);
margin-bottom: 10px;
}

.timeline-content p {
color: var(--text-light);
font-size: 14px;
line-height: 1.7;
}

.testimonials {
padding: 100px 20px;
background: var(--white);
}

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

.testimonial-card {
background: var(--cream);
padding: 35px;
border-radius: 5px;
position: relative;
}

.quote-mark {
font-family: 'Cormorant Garamond', serif;
font-size: 4rem;
color: var(--gold);
opacity: 0.3;
line-height: 1;
margin-bottom: 10px;
}

.testimonial-card p {
color: var(--text-light);
font-size: 14px;
line-height: 1.8;
margin-bottom: 25px;
}

.testimonial-author strong {
color: var(--primary);
display: block;
margin-bottom: 5px;
font-size: 15px;
}

.testimonial-author span {
color: var(--text-light);
font-size: 13px;
}

.values {
padding: 100px 20px;
background: var(--primary);
color: var(--white);
}

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

.values .section-label {
color: var(--gold);
}

.values h2 {
color: var(--white);
margin-bottom: 25px;
}

.values-text > p {
font-size: 1.05rem;
line-height: 1.8;
margin-bottom: 40px;
opacity: 0.9;
}

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

.value-item h4 {
color: var(--gold);
margin-bottom: 10px;
font-size: 1.1rem;
}

.value-item p {
font-size: 14px;
line-height: 1.7;
opacity: 0.85;
}

.final-cta {
padding: 100px 20px;
background: var(--cream);
}

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

.cta-text h2 {
color: var(--primary);
margin-bottom: 20px;
font-size: 2.5rem;
}

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

.cta-note {
margin-top: 15px;
font-size: 13px;
color: var(--text-light);
}

.page-hero {
background: var(--cream);
padding: 80px 20px;
text-align: center;
}

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

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

.services-detailed {
padding: 100px 20px;
}

.service-detail {
max-width: 900px;
margin: 0 auto 80px;
}

.service-detail-content h2 {
margin-bottom: 20px;
color: var(--primary);
}

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

.service-detail-content ul {
list-style: none;
margin-bottom: 25px;
}

.service-detail-content ul li {
padding: 10px 0 10px 30px;
position: relative;
color: var(--text-light);
font-size: 14px;
}

.service-detail-content ul li::before {
content: '◆';
position: absolute;
left: 0;
color: var(--gold);
}

.process {
background: var(--cream);
padding: 100px 20px;
}

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

.process-step {
background: var(--white);
padding: 35px 30px;
border-radius: 5px;
text-align: center;
}

.step-number {
font-family: 'Cormorant Garamond', serif;
font-size: 2.5rem;
color: var(--gold);
margin-bottom: 15px;
font-weight: 600;
}

.process-step h3 {
margin-bottom: 10px;
color: var(--primary);
}

.process-step p {
color: var(--text-light);
font-size: 14px;
line-height: 1.7;
}

.products {
padding: 100px 20px;
}

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

.product-card {
background: var(--cream);
padding: 40px 30px;
border-radius: 5px;
text-align: center;
transition: all 0.3s ease;
}

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

.product-card h3 {
margin-bottom: 15px;
color: var(--primary);
}

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

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

.product-button {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: 12px 30px;
font-size: 14px;
border-radius: 3px;
transition: all 0.3s ease;
}

.product-button:hover {
background: var(--gold);
}

.advisory {
background: var(--cream);
padding: 100px 20px;
}

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

.advisory-card {
background: var(--white);
padding: 35px;
border-radius: 5px;
}

.advisory-card h3 {
margin-bottom: 10px;
color: var(--primary);
}

.advisory-card p {
color: var(--text-light);
font-size: 14px;
line-height: 1.7;
}

.benefits {
padding: 100px 20px;
}

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

.benefit-item {
display: flex;
gap: 20px;
}

.benefit-item h3 {
margin-bottom: 8px;
color: var(--primary);
font-size: 1.2rem;
}

.benefit-item p {
color: var(--text-light);
font-size: 14px;
line-height: 1.7;
}

.contact-section {
padding: 100px 20px;
}

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

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
margin-bottom: 15px;
color: var(--primary);
}

.contact-form-wrapper p {
color: var(--text-light);
margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group textarea {
padding: 12px 15px;
border: 1px solid #ddd;
border-radius: 3px;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
transition: all 0.3s ease;
}

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

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

.checkbox-label {
display: flex;
gap: 10px;
cursor: pointer;
font-size: 13px;
}

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

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

.submit-button {
background: var(--gold);
color: var(--white);
padding: 14px 35px;
border: none;
border-radius: 3px;
font-size: 15px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}

.submit-button:hover {
background: var(--bronze);
}

.contact-info-item {
display: flex;
gap: 20px;
margin-bottom: 30px;
}

.contact-info-item h3 {
margin-bottom: 5px;
color: var(--primary);
font-size: 1.1rem;
}

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

.map-section {
padding: 0 20px 100px;
}

.map-section h2 {
text-align: center;
margin-bottom: 30px;
color: var(--primary);
}

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

.thankyou-section,
.error-section {
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
justify-content: center;
padding: 60px 20px;
}

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

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

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

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

.error-number {
font-family: 'Cormorant Garamond', serif;
font-size: 6rem;
color: var(--gold);
font-weight: 600;
margin-bottom: 20px;
}

.policy-section {
padding: 80px 20px;
}

.policy-section h1 {
margin-bottom: 10px;
color: var(--primary);
}

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

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

.policy-content h2 {
margin-top: 40px;
margin-bottom: 15px;
color: var(--primary);
}

.policy-content h3 {
margin-top: 25px;
margin-bottom: 10px;
color: var(--primary);
}

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

.policy-content ul {
margin: 15px 0 15px 25px;
}

.policy-content ul li {
color: var(--text-light);
margin-bottom: 8px;
line-height: 1.8;
}

.footer {
background: var(--primary);
color: var(--white);
padding: 50px 20px 20px;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-bottom: 30px;
}

.footer-section h4 {
margin-bottom: 15px;
color: var(--white);
}

.footer-section p {
font-size: 14px;
line-height: 1.6;
opacity: 0.9;
}

.footer-section a {
display: block;
font-size: 14px;
margin-bottom: 8px;
opacity: 0.9;
transition: all 0.3s ease;
}

.footer-section a:hover {
opacity: 1;
color: var(--gold);
}

.footer-bottom {
max-width: 1200px;
margin: 0 auto;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.1);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.footer-bottom p {
font-size: 13px;
opacity: 0.9;
}

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

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

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

@media (max-width: 992px) {
h1 { font-size: 2.5rem; }
h2 { font-size: 1.9rem; }
.hero-modern-content h1 { font-size: 3rem; }
.philosophy-grid { grid-template-columns: 1fr; }
.expertise-grid { grid-template-columns: repeat(2, 1fr); }
.showcase-grid { grid-template-columns: 1fr; }
.showcase-item.large { grid-row: span 1; }
.testimonials-grid { grid-template-columns: repeat(2, 1fr); }
.values-list { grid-template-columns: 1fr; }
.process-grid { grid-template-columns: repeat(2, 1fr); }
.products-grid { grid-template-columns: repeat(2, 1fr); }
.contact-grid { grid-template-columns: 1fr; }
.footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 70px;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transform: translateX(-100%);
transition: all 0.3s ease;
gap: 15px;
}
.nav.active { transform: translateX(0); }
.menu-toggle { display: flex; }
.hero-modern { min-height: 80vh; padding: 60px 20px; }
.hero-modern-content h1 { font-size: 2.2rem; }
.hero-stats { flex-direction: column; gap: 30px; }
.hero-actions { flex-direction: column; }
.philosophy, .expertise, .showcase, .process-section, .testimonials, .values, .final-cta, .services-detailed, .process, .products, .advisory, .benefits, .contact-section { padding: 60px 20px; }
.expertise-grid, .testimonials-grid, .process-grid, .products-grid, .advisory-grid, .benefits-grid { grid-template-columns: 1fr; }
.footer-container { grid-template-columns: 1fr; gap: 30px; }
.footer-bottom { flex-direction: column; text-align: center; }
.error-number { font-size: 4rem; }
}

@media (max-width: 480px) {
body { font-size: 14px; }
h1 { font-size: 1.9rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }
.logo { font-size: 1.2rem; }
.hero-modern-content h1 { font-size: 1.8rem; }
.hero-subtitle { font-size: 1rem; }
.stat-number { font-size: 2rem; }
.btn-primary, .btn-secondary { padding: 14px 30px; font-size: 14px; }
.btn-primary.large { padding: 16px 35px; }
.product-card, .advisory-card { padding: 30px 20px; }
.testimonial-card { padding: 25px; }
.process-step { padding: 25px 20px; }
.error-number { font-size: 3rem; }
}

@media (max-width: 320px) {
.container, .header-container { padding: 0 15px; }
.privacy-content { padding: 15px; }
.btn-primary, .btn-secondary, .submit-button { padding: 12px 20px; font-size: 13px; }
.hero-modern-content h1 { font-size: 1.6rem; }
.stat-number { font-size: 1.7rem; }
}
