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

:root {
--primary: #7A6A53;
--secondary: #C9B8A0;
--dark: #3E3428;
--light: #F5F1EB;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: #333;
font-size: 14px;
}

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

.header {
background: #fff;
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: relative;
z-index: 100;
}

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

.logo {
font-size: 17px;
font-weight: 700;
color: var(--primary);
text-decoration: none;
letter-spacing: -0.5px;
}

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

.nav a {
color: #333;
text-decoration: none;
font-size: 13px;
font-weight: 500;
transition: color 0.3s;
}

.nav a:hover {
color: var(--primary);
}

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

.menu-toggle span {
width: 22px;
height: 2px;
background: #333;
transition: 0.3s;
}

.hero-modern {
min-height: 85vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
background: var(--light);
padding: 80px 0 60px;
}

.hero-bg {
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
opacity: 0.08;
z-index: 0;
}

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

.hero-text {
max-width: 540px;
}

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

.hero-text h1 {
font-size: 48px;
line-height: 1.1;
margin-bottom: 20px;
color: var(--dark);
font-weight: 700;
}

.hero-text p {
font-size: 16px;
line-height: 1.7;
color: #666;
margin-bottom: 30px;
}

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

.btn {
display: inline-block;
background: var(--primary);
color: #fff;
padding: 14px 32px;
text-decoration: none;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
transition: all 0.3s;
border: none;
cursor: pointer;
}

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

.btn-outline {
display: inline-block;
background: transparent;
color: var(--primary);
padding: 14px 32px;
text-decoration: none;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
border: 2px solid var(--primary);
transition: all 0.3s;
}

.btn-outline:hover {
background: var(--primary);
color: #fff;
}

.btn-small {
display: inline-block;
background: var(--primary);
color: #fff;
padding: 10px 22px;
text-decoration: none;
border-radius: 5px;
font-size: 13px;
font-weight: 600;
transition: all 0.3s;
}

.btn-small:hover {
background: var(--dark);
}

.btn-large {
display: inline-block;
background: var(--primary);
color: #fff;
padding: 16px 40px;
text-decoration: none;
border-radius: 6px;
font-size: 15px;
font-weight: 600;
transition: all 0.3s;
border: none;
cursor: pointer;
}

.btn-large:hover {
background: var(--dark);
transform: translateY(-2px);
}

.hero-visual {
position: relative;
}

.hero-card {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-card img {
width: 100%;
height: auto;
display: block;
}

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

.features {
padding: 70px 0;
background: #fff;
}

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

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

.feature-icon {
font-size: 28px;
color: var(--primary);
margin-bottom: 15px;
}

.feature-item h3 {
font-size: 17px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 600;
}

.feature-item p {
font-size: 13px;
color: #666;
line-height: 1.7;
}

.story {
padding: 70px 0;
background: var(--light);
}

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

.story-text h2 {
font-size: 36px;
margin-bottom: 25px;
color: var(--dark);
font-weight: 700;
}

.story-text p {
font-size: 15px;
color: #666;
line-height: 1.8;
margin-bottom: 20px;
}

.showcase {
padding: 70px 0;
background: #fff;
}

.showcase h2 {
text-align: center;
font-size: 36px;
margin-bottom: 50px;
color: var(--dark);
font-weight: 700;
}

.showcase-grid {
display: grid;
gap: 50px;
}

.showcase-item {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}

.showcase-item:nth-child(even) {
direction: rtl;
}

.showcase-item:nth-child(even) > * {
direction: ltr;
}

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

.showcase-image img {
width: 100%;
height: auto;
display: block;
}

.showcase-info h3 {
font-size: 22px;
margin-bottom: 15px;
color: var(--dark);
font-weight: 600;
}

.showcase-info p {
font-size: 14px;
color: #666;
line-height: 1.7;
margin-bottom: 20px;
}

.price {
display: block;
font-size: 24px;
font-weight: 700;
color: var(--primary);
margin-bottom: 20px;
}

.approach {
padding: 70px 0;
background: var(--light);
}

.approach h2 {
text-align: center;
font-size: 36px;
margin-bottom: 50px;
color: var(--dark);
font-weight: 700;
}

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

.approach-step {
text-align: center;
}

.step-num {
display: block;
font-size: 14px;
font-weight: 700;
color: var(--primary);
margin-bottom: 15px;
letter-spacing: 1px;
}

.approach-step h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 600;
}

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

.insights {
padding: 70px 0;
background: #fff;
}

.insights h2 {
text-align: center;
font-size: 36px;
margin-bottom: 50px;
color: var(--dark);
font-weight: 700;
}

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

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

.insight-card h3 {
font-size: 17px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 600;
}

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

.testimonials {
padding: 70px 0;
background: var(--light);
}

.testimonials h2 {
text-align: center;
font-size: 36px;
margin-bottom: 50px;
color: var(--dark);
font-weight: 700;
}

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

.testimonial {
background: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.testimonial p {
font-size: 14px;
color: #666;
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
}

.testimonial-author strong {
display: block;
font-size: 14px;
color: var(--dark);
margin-bottom: 4px;
}

.testimonial-author span {
font-size: 12px;
color: #999;
}

.values {
padding: 70px 0;
background: #fff;
}

.values h2 {
text-align: center;
font-size: 36px;
margin-bottom: 50px;
color: var(--dark);
font-weight: 700;
}

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

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

.value-item h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 600;
}

.value-item p {
font-size: 13px;
color: #666;
line-height: 1.7;
}

.connect {
padding: 80px 0;
background: var(--primary);
text-align: center;
}

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

.connect h2 {
font-size: 38px;
margin-bottom: 20px;
color: #fff;
font-weight: 700;
}

.connect p {
font-size: 16px;
margin-bottom: 35px;
color: rgba(255,255,255,0.9);
line-height: 1.7;
}

.connect .btn-large {
background: #fff;
color: var(--primary);
}

.connect .btn-large:hover {
background: var(--light);
}

.footer {
background: var(--dark);
color: #fff;
padding: 50px 0 25px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-bottom: 40px;
}

.footer-col h4 {
font-size: 15px;
margin-bottom: 18px;
font-weight: 600;
}

.footer-col p {
font-size: 13px;
line-height: 1.8;
opacity: 0.85;
margin-bottom: 8px;
}

.footer-col a {
display: block;
color: #fff;
text-decoration: none;
font-size: 13px;
margin-bottom: 10px;
opacity: 0.85;
transition: opacity 0.3s;
}

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

.footer-bottom {
text-align: center;
padding-top: 25px;
border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
font-size: 12px;
opacity: 0.7;
}

.page-hero {
background: var(--light);
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
font-size: 40px;
margin-bottom: 15px;
color: var(--dark);
font-weight: 700;
}

.page-hero p {
font-size: 16px;
color: #666;
max-width: 650px;
margin: 0 auto;
line-height: 1.7;
}

.styling-approach,
.styling-services,
.styling-rooms,
.styling-cta,
.seasonal-intro,
.seasons-grid,
.holiday-approach,
.seasonal-cta {
padding: 70px 0;
}

.styling-approach {
background: #fff;
}

.styling-approach h2,
.styling-services h2,
.styling-rooms h2,
.seasonal-intro h2,
.seasons-grid h2,
.holiday-approach h2 {
font-size: 36px;
margin-bottom: 30px;
color: var(--dark);
text-align: center;
font-weight: 700;
}

.approach-content,
.seasonal-content {
max-width: 850px;
margin: 0 auto;
}

.approach-content p,
.seasonal-content p {
font-size: 15px;
color: #666;
line-height: 1.8;
margin-bottom: 20px;
}

.styling-services {
background: var(--light);
}

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

.service-card {
background: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-card h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 600;
}

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

.styling-rooms {
background: #fff;
}

.rooms-content {
max-width: 900px;
margin: 0 auto;
display: grid;
gap: 25px;
}

.room-item {
background: var(--light);
padding: 25px;
border-radius: 8px;
}

.room-item h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 600;
}

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

.styling-cta,
.seasonal-cta {
background: var(--primary);
text-align: center;
}

.styling-cta h2,
.seasonal-cta h2 {
color: #fff;
margin-bottom: 20px;
}

.styling-cta p,
.seasonal-cta p {
font-size: 16px;
margin-bottom: 30px;
color: rgba(255,255,255,0.9);
}

.styling-cta .btn-large,
.seasonal-cta .btn-large {
background: #fff;
color: var(--primary);
}

.styling-cta .btn-large:hover,
.seasonal-cta .btn-large:hover {
background: var(--light);
}

.seasonal-intro {
background: #fff;
}

.seasons-grid {
background: var(--light);
}

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

.season-card {
background: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.season-card h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 600;
}

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

.holiday-approach {
background: #fff;
}

.holiday-content {
max-width: 850px;
margin: 0 auto;
}

.holiday-content p {
font-size: 15px;
color: #666;
line-height: 1.8;
margin-bottom: 20px;
}

.holiday-tips {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 40px;
}

.tip-item {
background: var(--light);
padding: 25px;
border-radius: 8px;
}

.tip-item h3 {
font-size: 17px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 600;
}

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

.contact-section {
padding: 70px 0;
background: #fff;
}

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

.contact-info h2,
.contact-form-wrapper h2 {
font-size: 28px;
margin-bottom: 20px;
color: var(--dark);
font-weight: 700;
}

.contact-info p {
font-size: 14px;
color: #666;
line-height: 1.7;
margin-bottom: 25px;
}

.info-item {
margin-bottom: 25px;
}

.info-item h3 {
font-size: 15px;
margin-bottom: 10px;
color: var(--dark);
font-weight: 600;
}

.info-item p {
font-size: 13px;
color: #666;
margin-bottom: 6px;
line-height: 1.6;
}

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

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

.form-group label {
font-size: 13px;
margin-bottom: 6px;
color: #333;
font-weight: 500;
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 13px;
font-family: inherit;
transition: border-color 0.3s;
}

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

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

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

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

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

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

.map-section h2 {
text-align: center;
font-size: 36px;
margin-bottom: 40px;
color: var(--dark);
font-weight: 700;
}

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

.policy-page {
padding: 70px 0;
background: #fff;
}

.policy-page h1 {
font-size: 38px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 700;
}

.update-date {
font-size: 13px;
color: #999;
margin-bottom: 40px;
}

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

.policy-content h2 {
font-size: 24px;
margin-top: 40px;
margin-bottom: 18px;
color: var(--dark);
font-weight: 600;
}

.policy-content h3 {
font-size: 19px;
margin-top: 25px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 600;
}

.policy-content p {
font-size: 14px;
color: #666;
line-height: 1.8;
margin-bottom: 18px;
}

.policy-content ul,
.policy-content ol {
margin-left: 25px;
margin-bottom: 18px;
}

.policy-content li {
font-size: 14px;
color: #666;
line-height: 1.8;
margin-bottom: 10px;
}

.thankyou-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: var(--light);
padding: 20px;
}

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

.thankyou-content h1 {
font-size: 42px;
margin-bottom: 20px;
color: var(--dark);
font-weight: 700;
}

.error-content h1 {
font-size: 90px;
margin-bottom: 10px;
color: var(--primary);
font-weight: 700;
}

.error-content h2 {
font-size: 32px;
margin-bottom: 18px;
color: var(--dark);
font-weight: 700;
}

.thankyou-content p,
.error-content p {
font-size: 16px;
color: #666;
line-height: 1.7;
margin-bottom: 18px;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: #fff;
padding: 20px;
z-index: 1000;
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
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: 25px;
}

.privacy-content p {
font-size: 13px;
line-height: 1.6;
margin: 0;
opacity: 0.9;
}

.privacy-buttons {
display: flex;
gap: 15px;
align-items: center;
flex-shrink: 0;
}

.privacy-buttons a {
color: #fff;
text-decoration: underline;
font-size: 13px;
opacity: 0.9;
}

.privacy-buttons button {
background: #fff;
color: var(--dark);
border: none;
padding: 10px 24px;
border-radius: 5px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}

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

@media (max-width: 1024px) {
.hero-grid {
gap: 40px;
}

.hero-text h1 {
font-size: 40px;
}

.showcase-item {
gap: 30px;
}

.approach-grid {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}

.insights-grid,
.testimonial-grid,
.values-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 65px;
left: -100%;
width: 100%;
background: #fff;
flex-direction: column;
padding: 25px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
transition: left 0.3s;
}

.nav.active {
left: 0;
}

.menu-toggle {
display: flex;
}

.hero-modern {
min-height: auto;
padding: 50px 0;
}

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

.hero-text h1 {
font-size: 34px;
}

.hero-bg {
width: 100%;
height: 40%;
}

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

.showcase-item {
grid-template-columns: 1fr;
}

.showcase-item:nth-child(even) {
direction: ltr;
}

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

.insights-grid,
.testimonial-grid,
.values-grid,
.services-grid,
.season-cards,
.holiday-tips {
grid-template-columns: 1fr;
}

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

.footer-content {
grid-template-columns: 1fr;
gap: 30px;
}

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

.privacy-buttons {
flex-direction: column;
width: 100%;
}

.privacy-buttons button {
width: 100%;
}
}

@media (max-width: 480px) {
.logo {
font-size: 15px;
}

.hero-text h1 {
font-size: 28px;
}

.hero-text p {
font-size: 14px;
}

.page-hero h1 {
font-size: 30px;
}

.story-text h2,
.showcase h2,
.approach h2,
.insights h2,
.testimonials h2,
.values h2,
.connect h2,
.styling-approach h2,
.styling-services h2,
.styling-rooms h2,
.seasonal-intro h2,
.seasons-grid h2,
.holiday-approach h2,
.map-section h2 {
font-size: 28px;
}

.btn,
.btn-outline {
padding: 12px 24px;
font-size: 13px;
}

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

.thankyou-content h1 {
font-size: 32px;
}

.error-content h1 {
font-size: 64px;
}

.error-content h2 {
font-size: 24px;
}

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

.thankyou-buttons .btn,
.thankyou-buttons .btn-outline,
.error-buttons .btn,
.error-buttons .btn-outline {
width: 100%;
}
}

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

.hero-modern {
padding: 40px 0;
}

.hero-text h1 {
font-size: 24px;
}

.features,
.story,
.showcase,
.approach,
.insights,
.testimonials,
.values,
.contact-section,
.map-section,
.policy-page,
.styling-approach,
.styling-services,
.styling-rooms,
.styling-cta,
.seasonal-intro,
.seasons-grid,
.holiday-approach,
.seasonal-cta {
padding: 50px 0;
}

.connect {
padding: 60px 0;
}

.story-text h2,
.showcase h2,
.approach h2,
.insights h2,
.testimonials h2,
.values h2,
.connect h2 {
font-size: 24px;
}
}
