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

:root {
--primary: #1a1a1a;
--secondary: #8b7355;
--accent: #c9a961;
--light: #f5f5f5;
--white: #ffffff;
--border: #e0e0e0;
--transition: all 0.3s ease;
}

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

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

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

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

a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}

ul {
list-style: none;
}

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

.container-fluid {
width: 100%;
padding: 0;
}

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

.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: var(--transition);
}

.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 {
margin: 0;
font-size: 14px;
flex: 1;
min-width: 250px;
}

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

.btn-accept, .btn-learn {
padding: 8px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: var(--transition);
}

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

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

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

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

.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: var(--transition);
}

.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(--primary);
}

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

.nav-link {
color: var(--primary);
font-size: 14px;
font-weight: 500;
position: relative;
}

.nav-link:hover,
.nav-link.active {
color: var(--secondary);
}

.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--secondary);
transition: var(--transition);
}

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

.menu-toggle {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 10px;
width: 40px;
height: 40px;
}

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

.hero-modern {
position: relative;
min-height: 90vh;
display: flex;
align-items: center;
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
overflow: hidden;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(139,115,85,0.3) 100%);
z-index: 1;
}

.hero-image-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('../fashion_gallery/elegant-wardrobe.jpg') center/cover no-repeat;
opacity: 0.15;
z-index: 0;
}

.hero-grid {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
padding: 80px 0;
}

.hero-text {
color: var(--white);
}

.hero-label {
display: inline-block;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 3px;
color: var(--accent);
margin-bottom: 20px;
}

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

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

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

.btn-hero-primary,
.btn-hero-secondary {
padding: 14px 35px;
border-radius: 4px;
font-weight: 500;
font-size: 14px;
transition: var(--transition);
display: inline-block;
}

.btn-hero-primary {
background: var(--accent);
color: var(--white);
border: 2px solid var(--accent);
}

.btn-hero-primary:hover {
background: transparent;
}

.btn-hero-secondary {
background: transparent;
color: var(--white);
border: 2px solid var(--white);
}

.btn-hero-secondary:hover {
background: var(--white);
color: var(--primary);
}

.hero-image {
position: relative;
}

.hero-image img {
border-radius: 8px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
width: 100%;
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 12px 35px;
border-radius: 4px;
font-weight: 500;
font-size: 14px;
transition: var(--transition);
border: 2px solid transparent;
}

.btn-primary {
background: var(--accent);
color: var(--white);
border-color: var(--accent);
}

.btn-primary:hover {
background: var(--secondary);
border-color: var(--secondary);
}

.btn-secondary {
background: transparent;
color: var(--primary);
border-color: var(--primary);
}

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

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

.section-header p {
color: #666;
font-size: 1rem;
}

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

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

.service-card {
background: var(--white);
padding: 40px 30px;
border-radius: 8px;
transition: var(--transition);
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card h3 {
margin-bottom: 15px;
font-size: 1.4rem;
}

.service-card p {
color: #666;
font-size: 14px;
line-height: 1.7;
}

.philosophy {
padding: 80px 0;
}

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

.philosophy-text p {
color: #666;
margin-bottom: 20px;
line-height: 1.8;
}

.philosophy-image img {
border-radius: 8px;
width: 100%;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.expertise {
padding: 80px 0;
background: var(--light);
}

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

.expertise-card {
background: var(--white);
padding: 35px 25px;
border-radius: 8px;
}

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

.expertise-card h3 {
margin-bottom: 12px;
font-size: 1.3rem;
}

.expertise-card p {
color: #666;
font-size: 14px;
line-height: 1.7;
}

.process {
padding: 80px 0;
}

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

.process-step {
background: var(--light);
padding: 35px 25px;
border-radius: 8px;
text-align: center;
}

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

.process-step h3 {
margin-bottom: 10px;
font-size: 1.2rem;
}

.process-step p {
color: #666;
font-size: 14px;
line-height: 1.7;
}

.transformation {
padding: 80px 0;
background: var(--light);
}

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

.transformation-content p {
color: #666;
margin-bottom: 40px;
line-height: 1.8;
}

.transformation-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
margin-top: 50px;
}

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

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

.stat-label {
font-size: 14px;
color: #666;
text-transform: uppercase;
letter-spacing: 1px;
}

.testimonials {
padding: 80px 0;
}

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

.testimonial-card {
background: var(--light);
padding: 35px 30px;
border-radius: 8px;
}

.testimonial-card p {
color: var(--primary);
font-style: italic;
margin-bottom: 25px;
font-size: 15px;
line-height: 1.8;
}

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

.testimonial-author span {
color: #666;
font-size: 13px;
}

.final-cta {
padding: 80px 0;
background: var(--primary);
}

.final-cta-wrapper {
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.final-cta-content h2 {
color: var(--white);
margin-bottom: 20px;
}

.final-cta-content p {
color: rgba(255,255,255,0.9);
font-size: 1.1rem;
margin-bottom: 30px;
line-height: 1.8;
}

.btn-cta-large {
display: inline-block;
padding: 16px 45px;
background: var(--accent);
color: var(--white);
border-radius: 4px;
font-weight: 500;
font-size: 15px;
transition: var(--transition);
border: 2px solid var(--accent);
}

.btn-cta-large:hover {
background: transparent;
}

.cta-note {
margin-top: 20px;
font-size: 13px;
color: rgba(255,255,255,0.7);
}

.footer {
background: #0a0a0a;
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;
margin: 0;
}

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

.footer-links a {
font-size: 13px;
color: var(--white);
}

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

.page-hero {
background: var(--primary);
color: var(--white);
padding: 70px 0;
text-align: center;
}

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

.page-hero p {
font-size: 1.1rem;
color: rgba(255,255,255,0.9);
}

.services-detailed {
padding: 80px 0;
}

.service-detail {
margin-bottom: 60px;
text-align: center;
}

.service-detail-content h2 {
margin-bottom: 20px;
}

.service-detail-content p {
color: #666;
margin-bottom: 30px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
line-height: 1.8;
}

.service-features {
text-align: left;
max-width: 600px;
margin: 0 auto;
}

.service-features li {
padding: 12px 0;
color: var(--primary);
font-size: 14px;
border-bottom: 1px solid var(--border);
}

.service-features li:last-child {
border-bottom: none;
}

.pricing {
padding: 80px 0;
background: var(--light);
}

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

.pricing-card {
background: var(--white);
padding: 40px 30px;
border-radius: 8px;
text-align: center;
position: relative;
border: 2px solid var(--border);
transition: var(--transition);
}

.pricing-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured {
border-color: var(--accent);
}

.popular-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: var(--accent);
color: var(--white);
padding: 5px 20px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.pricing-card h3 {
margin-bottom: 20px;
}

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

.pricing-features {
margin-bottom: 30px;
text-align: left;
}

.pricing-features li {
padding: 12px 0;
border-bottom: 1px solid var(--border);
font-size: 14px;
}

.pricing-features li:last-child {
border-bottom: none;
}

.approach-section {
padding: 80px 0;
}

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

.approach-content p {
color: #666;
margin-bottom: 20px;
line-height: 1.8;
}

.trends-intro {
padding: 80px 0;
}

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

.trends-intro-text p {
color: #666;
margin-bottom: 20px;
line-height: 1.8;
}

.trends-intro-image img {
border-radius: 8px;
width: 100%;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.current-trends {
padding: 80px 0;
background: var(--light);
}

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

.trend-card {
background: var(--white);
padding: 35px 25px;
border-radius: 8px;
text-align: center;
}

.trend-card h3 {
margin-bottom: 12px;
font-size: 1.3rem;
}

.trend-card p {
color: #666;
font-size: 14px;
line-height: 1.7;
}

.seasonal-tips {
padding: 80px 0;
}

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

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

.tip-content h3 {
margin-bottom: 10px;
font-size: 1.3rem;
}

.tip-content p {
color: #666;
font-size: 14px;
line-height: 1.7;
}

.trend-consultation {
padding: 80px 0;
background: var(--light);
}

.consultation-box {
background: var(--white);
padding: 50px;
border-radius: 8px;
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.consultation-content p {
color: #666;
margin-bottom: 30px;
line-height: 1.8;
}

.contact-section {
padding: 80px 0;
}

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

.contact-intro {
margin-bottom: 40px;
}

.contact-intro h2 {
margin-bottom: 15px;
}

.contact-intro p {
color: #666;
line-height: 1.8;
}

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

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

.contact-item-content h3 {
font-size: 1rem;
margin-bottom: 8px;
}

.contact-item-content p {
color: #666;
font-size: 14px;
margin: 0;
line-height: 1.7;
}

.contact-form-side {
background: var(--light);
padding: 40px;
border-radius: 8px;
}

.contact-form h3 {
margin-bottom: 25px;
}

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

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
font-size: 14px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid var(--border);
border-radius: 4px;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
transition: var(--transition);
}

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

.form-group textarea {
resize: vertical;
}

.checkbox-group {
margin-top: 20px;
}

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

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

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

.contact-form button {
width: 100%;
padding: 12px;
background: var(--accent);
color: var(--white);
border: none;
border-radius: 4px;
font-weight: 500;
font-size: 14px;
cursor: pointer;
transition: var(--transition);
}

.contact-form button:hover {
background: var(--secondary);
}

.map-section {
margin-top: 80px;
}

.map-wrapper iframe {
width: 100%;
display: block;
}

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

.thank-you-content,
.error-content {
max-width: 700px;
margin: 0 auto;
}

.thank-you-content h1,
.error-content h1 {
margin-bottom: 25px;
}

.thank-you-content p,
.error-content p {
color: #666;
margin-bottom: 20px;
line-height: 1.8;
}

.thank-you-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 35px;
flex-wrap: wrap;
}

.error-number {
font-family: 'Cormorant Garamond', serif;
font-size: 8rem;
font-weight: 600;
color: var(--accent);
line-height: 1;
margin-bottom: 20px;
}

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

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

.policy-content h1 {
margin-bottom: 10px;
}

.policy-date {
color: #666;
font-size: 14px;
margin-bottom: 40px;
}

.policy-content h2 {
margin-top: 40px;
margin-bottom: 15px;
font-size: 1.6rem;
}

.policy-content h3 {
margin-top: 25px;
margin-bottom: 10px;
font-size: 1.3rem;
}

.policy-content p {
color: #666;
margin-bottom: 15px;
line-height: 1.8;
}

.policy-content ul {
margin: 20px 0;
padding-left: 20px;
}

.policy-content ul li {
list-style: disc;
color: #666;
margin-bottom: 10px;
line-height: 1.8;
}

@media (max-width: 768px) {
h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }

.nav {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
height: calc(100vh - 70px);
background: var(--white);
flex-direction: column;
padding: 30px;
gap: 20px;
transition: var(--transition);
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav.active {
left: 0;
}

.menu-toggle {
display: flex;
}

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

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

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

.hero-modern {
min-height: 70vh;
}

.hero-grid {
grid-template-columns: 1fr;
gap: 40px;
padding: 60px 0;
}

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

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

.hero-image {
order: -1;
}

.services,
.philosophy,
.expertise,
.process,
.transformation,
.testimonials,
.final-cta,
.services-detailed,
.pricing,
.trends-intro,
.current-trends,
.seasonal-tips,
.trend-consultation,
.contact-section,
.approach-section {
padding: 60px 0;
}

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

.trends-intro-image {
order: -1;
}

.services-grid,
.expertise-grid,
.process-grid,
.testimonials-grid,
.pricing-grid,
.trends-grid,
.tips-wrapper,
.transformation-stats {
grid-template-columns: 1fr;
gap: 25px;
}

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

.consultation-box {
padding: 35px 25px;
}

.contact-form-side {
padding: 30px 20px;
}

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

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

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

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

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

h1 { font-size: 1.9rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }

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

.btn-primary,
.btn-secondary,
.btn-hero-primary,
.btn-hero-secondary {
padding: 11px 28px;
font-size: 13px;
}

.btn-cta-large {
padding: 14px 35px;
font-size: 14px;
}

.service-card,
.expertise-card,
.process-step,
.trend-card {
padding: 30px 20px;
}

.pricing-card {
padding: 35px 25px;
}

.price {
font-size: 2.3rem;
}

.stat-number {
font-size: 2.5rem;
}

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

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

.hero-buttons {
flex-direction: column;
}

.hero-buttons a {
width: 100%;
text-align: center;
}
}

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

h1 { font-size: 1.7rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.1rem; }

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

.logo {
font-size: 1.3rem;
}

.expertise-number,
.step-number {
font-size: 2rem;
}

.stat-number {
font-size: 2.2rem;
}

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