* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

*,
*::before,
*::after {
box-sizing: border-box;
}

:root {
--black: #000000;
--white: #FFFFFF;
--gold: #C6A984;
--beige: #E5DDD0;
--charcoal: #2F2F2F;
}

html {
scroll-behavior: smooth;
overflow-x: hidden;
width: 100%;
max-width: 100vw;
min-width: 320px;
}

body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
font-weight: 400;
line-height: 1.6;
color: var(--charcoal);
background-color: var(--white);
min-width: 320px;
overflow-x: hidden;
width: 100%;
max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
font-weight: 600;
color: var(--black);
line-height: 1.2;
}

h1 {
font-size: clamp(2.5rem, 5vw, 4rem);
margin-bottom: 1rem;
}

h2 {
font-size: clamp(2rem, 4vw, 3rem);
margin-bottom: 1.5rem;
}

h3 {
font-size: clamp(1.5rem, 3vw, 2rem);
margin-bottom: 1rem;
}

h4 {
font-size: clamp(1.25rem, 2.5vw, 1.5rem);
margin-bottom: 0.75rem;
}

p {
margin-bottom: 1rem;
font-size: clamp(1rem, 2vw, 1.125rem);
}

a {
color: var(--charcoal);
text-decoration: none;
transition: color 0.3s ease;
}

a:hover {
color: var(--gold);
}

img {
max-width: 100%;
height: auto;
display: block;
width: 100%;
}

iframe {
max-width: 100%;
width: 100%;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 clamp(1rem, 4vw, 2rem);
width: 100%;
box-sizing: border-box;
}

header {
background-color: var(--white);
border-bottom: 1px solid var(--beige);
position: sticky;
top: 0;
z-index: 1000;
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.95);
}

.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 4vw, 2rem);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: nowrap;
gap: clamp(0.5rem, 2vw, 1rem);
width: 100%;
box-sizing: border-box;
}

.logo {
font-family: 'Playfair Display', serif;
font-size: clamp(0.875rem, 2vw, 1.5rem);
font-weight: 600;
color: var(--black);
letter-spacing: 0.05em;
text-transform: uppercase;
white-space: nowrap;
flex-shrink: 0;
}

.nav-menu {
display: flex;
list-style: none;
gap: clamp(0.5rem, 1.5vw, 2rem);
align-items: center;
flex-wrap: nowrap;
margin: 0;
padding: 0;
flex-shrink: 1;
min-width: 0;
}

.nav-menu a {
font-size: clamp(0.625rem, 1.2vw, 1rem);
text-transform: uppercase;
letter-spacing: 0.05em;
font-weight: 500;
white-space: nowrap;
padding: 0.25rem 0;
}

.menu-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
gap: 4px;
flex-shrink: 0;
}

.menu-toggle span {
width: 25px;
height: 2px;
background-color: var(--black);
transition: all 0.3s ease;
}

.hero {
min-height: 90vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('../images/background1.jpg');
background-size: cover;
background-position: center;
opacity: 0.4;
z-index: 0;
}

.hero-content {
position: relative;
z-index: 1;
text-align: center;
padding: clamp(1.5rem, 4vw, 2rem);
max-width: 800px;
margin: 0 auto;
width: 100%;
box-sizing: border-box;
}

.hero h1 {
color: var(--black);
margin-bottom: 1rem;
}

.hero-subtitle {
font-size: clamp(1.25rem, 3vw, 1.75rem);
color: var(--charcoal);
text-transform: uppercase;
letter-spacing: 0.2em;
margin-bottom: 2rem;
font-weight: 300;
}

.btn-gold {
display: inline-block;
padding: 1rem 2.5rem;
background-color: var(--gold);
color: var(--white);
border: 2px solid var(--gold);
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: 500;
font-size: clamp(0.875rem, 1.5vw, 1rem);
transition: all 0.3s ease;
cursor: pointer;
}

.btn-gold:hover {
background-color: transparent;
color: var(--gold);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(198, 169, 132, 0.3);
}

.btn-gold-outline {
display: inline-block;
padding: 1rem 2.5rem;
background-color: transparent;
color: var(--gold);
border: 2px solid var(--gold);
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: 500;
font-size: clamp(0.875rem, 1.5vw, 1rem);
transition: all 0.3s ease;
cursor: pointer;
}

.btn-gold-outline:hover {
background-color: var(--gold);
color: var(--white);
transform: translateY(-2px);
}

.divider-gold {
width: clamp(50px, 8vw, 60px);
height: 2px;
background-color: var(--gold);
margin: clamp(1rem, 2vw, 1.5rem) auto;
max-width: 100%;
}

section {
padding: clamp(3rem, 8vw, 5rem) 0;
}

.style-discovery {
background-color: var(--white);
padding: 5rem 0;
}

.style-discovery h2,
.color-analysis h2,
.before-after h2,
.wardrobe-essentials h2,
.testimonials h2,
.process h2,
.transformation-process h2,
.confidence-building h2 {
text-align: center;
}

.discovery-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(2rem, 5vw, 4rem);
align-items: center;
margin-top: clamp(2rem, 4vw, 3rem);
width: 100%;
}

.discovery-text h3 {
margin-bottom: 1.5rem;
color: var(--black);
font-size: clamp(1.5rem, 3vw, 2rem);
}

.discovery-text p {
color: var(--charcoal);
margin-bottom: 2rem;
line-height: 1.8;
font-size: clamp(1rem, 2vw, 1.125rem);
}

.discovery-features {
display: flex;
flex-direction: column;
gap: 1rem;
}

.discovery-feature {
display: flex;
align-items: center;
gap: 1rem;
padding: 0.75rem 0;
}

.feature-check {
width: 24px;
height: 24px;
border-radius: 50%;
background-color: var(--gold);
color: var(--white);
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 0.875rem;
flex-shrink: 0;
animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
0%, 100% {
transform: scale(1);
box-shadow: 0 0 0 0 rgba(198, 169, 132, 0.7);
}
50% {
transform: scale(1.1);
box-shadow: 0 0 0 8px rgba(198, 169, 132, 0);
}
}

.discovery-feature span {
color: var(--charcoal);
font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
}

.discovery-visual {
display: flex;
align-items: center;
justify-content: center;
}

.animated-circle {
width: clamp(150px, 20vw, 200px);
height: clamp(150px, 20vw, 200px);
margin: 0 auto;
}

.animated-circle svg {
width: 100%;
height: 100%;
}

.circle-animate {
stroke-dasharray: 377;
stroke-dashoffset: 377;
animation: circleDraw 3s ease-in-out infinite;
}

.circle-animate-delay {
stroke-dasharray: 251;
stroke-dashoffset: 251;
animation: circleDraw 3s ease-in-out infinite 0.5s;
}

@keyframes circleDraw {
0% {
stroke-dashoffset: 377;
}
50% {
stroke-dashoffset: 0;
}
100% {
stroke-dashoffset: 377;
}
}

.pulse-animate {
animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.7;
transform: scale(1.2);
}
}

.transformation-process {
background-color: var(--beige);
padding: 5rem 0;
}

.process-timeline {
display: flex;
flex-direction: column;
gap: 3rem;
margin-top: 3rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.timeline-item {
display: flex;
align-items: flex-start;
gap: 2rem;
position: relative;
opacity: 0;
animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(1) {
animation-delay: 0.2s;
}

.timeline-item:nth-child(2) {
animation-delay: 0.4s;
}

.timeline-item:nth-child(3) {
animation-delay: 0.6s;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.timeline-number {
width: clamp(50px, 8vw, 60px);
height: clamp(50px, 8vw, 60px);
border-radius: 50%;
background: linear-gradient(135deg, var(--gold) 0%, var(--beige) 100%);
color: var(--white);
display: flex;
align-items: center;
justify-content: center;
font-family: 'Playfair Display', serif;
font-size: clamp(1.25rem, 2vw, 1.5rem);
font-weight: 700;
flex-shrink: 0;
box-shadow: 0 4px 12px rgba(198, 169, 132, 0.3);
transition: all 0.3s ease;
}

.timeline-item:hover .timeline-number {
transform: scale(1.1) rotate(5deg);
box-shadow: 0 6px 20px rgba(198, 169, 132, 0.5);
}

.timeline-content {
flex: 1;
padding-top: 0.5rem;
}

.timeline-content h3 {
margin-bottom: 0.75rem;
color: var(--black);
font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.timeline-content p {
color: var(--charcoal);
line-height: 1.7;
font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
}

.timeline-line {
position: absolute;
left: 30px;
top: 60px;
bottom: -3rem;
width: 2px;
background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}

.timeline-item:last-child .timeline-line {
display: none;
}

.confidence-building {
background-color: var(--white);
padding: 5rem 0;
}

.confidence-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
gap: clamp(2rem, 4vw, 3rem);
margin-top: clamp(2rem, 4vw, 3rem);
width: 100%;
}

.confidence-item {
text-align: center;
padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem);
background: linear-gradient(135deg, var(--white) 0%, var(--beige) 100%);
border-radius: 8px;
border: 1px solid var(--beige);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
width: 100%;
box-sizing: border-box;
}

.confidence-item::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(198, 169, 132, 0.1) 0%, transparent 70%);
opacity: 0;
transition: opacity 0.4s ease;
}

.confidence-item:hover::before {
opacity: 1;
}

.confidence-item:hover {
transform: translateY(-10px);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
border-color: var(--gold);
}

.confidence-icon {
width: clamp(80px, 12vw, 100px);
height: clamp(80px, 12vw, 100px);
margin: 0 auto clamp(1.5rem, 3vw, 2rem);
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.4s ease;
}

.confidence-icon svg {
width: 100%;
height: 100%;
transition: all 0.4s ease;
}

.confidence-item:hover .confidence-icon {
transform: rotate(10deg) scale(1.1);
}

.confidence-item:hover .confidence-icon svg {
filter: drop-shadow(0 6px 16px rgba(198, 169, 132, 0.4));
}

.confidence-item h3 {
margin-bottom: 1rem;
color: var(--black);
font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.confidence-item p {
color: var(--charcoal);
line-height: 1.7;
font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
}

.color-analysis {
background-color: var(--beige);
}

.color-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(2rem, 4vw, 3rem);
align-items: center;
margin-top: clamp(2rem, 4vw, 3rem);
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.color-text p {
margin-bottom: 1.5rem;
color: var(--charcoal);
}

.color-palette-visual {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: clamp(1.5rem, 3vw, 2.5rem);
justify-items: center;
max-width: 500px;
margin: 0 auto;
width: 100%;
box-sizing: border-box;
}

.color-swatch-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
transition: transform 0.3s ease;
}

.color-swatch-item:hover {
transform: translateY(-5px);
}

.color-swatch {
width: clamp(100px, 15vw, 140px);
height: clamp(100px, 15vw, 140px);
border-radius: 50%;
border: 3px solid var(--white);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
transition: all 0.3s ease;
position: relative;
}

.color-swatch::after {
content: '';
position: absolute;
top: -3px;
left: -3px;
right: -3px;
bottom: -3px;
border-radius: 50%;
border: 1px solid var(--gold);
opacity: 0;
transition: opacity 0.3s ease;
}

.color-swatch-item:hover .color-swatch {
box-shadow: 0 6px 20px rgba(198, 169, 132, 0.4);
transform: scale(1.05);
}

.color-swatch-item:hover .color-swatch::after {
opacity: 1;
}

.color-name {
font-size: clamp(0.875rem, 1.5vw, 1rem);
color: var(--charcoal);
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: 500;
text-align: center;
}

.before-after {
background-color: var(--white);
}

.transformation-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
gap: clamp(2rem, 4vw, 3rem);
margin-top: clamp(2rem, 4vw, 3rem);
width: 100%;
}

.transformation-item {
display: flex;
flex-direction: column;
width: 100%;
box-sizing: border-box;
}

.transformation-image {
margin-bottom: 1.5rem;
overflow: hidden;
height: clamp(350px, 50vw, 500px);
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}

.transformation-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.transformation-item:hover .transformation-image img {
transform: scale(1.05);
}

.transformation-text h3 {
margin-bottom: 1rem;
}

.transformation-text p {
color: var(--charcoal);
}

.wardrobe-essentials {
background-color: var(--beige);
}

.essentials-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(2rem, 4vw, 3rem);
align-items: center;
margin-top: clamp(2rem, 4vw, 3rem);
width: 100%;
}

.essentials-image img {
width: 100%;
height: auto;
border-radius: 4px;
}

.essentials-text h3 {
margin-bottom: 1.5rem;
}

.essentials-text p {
margin-bottom: 1.5rem;
color: var(--charcoal);
line-height: 1.8;
}

.essentials-text p:last-of-type {
margin-bottom: 2rem;
}

.testimonials {
background-color: var(--white);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
gap: clamp(1.5rem, 3vw, 2rem);
margin-top: clamp(2rem, 4vw, 3rem);
width: 100%;
}

.testimonial-card {
text-align: center;
padding: clamp(1.5rem, 3vw, 2rem);
background-color: var(--beige);
border-radius: 4px;
transition: transform 0.3s ease;
width: 100%;
box-sizing: border-box;
}

.testimonial-card:hover {
transform: translateY(-5px);
}

.testimonial-image {
width: clamp(100px, 15vw, 120px);
height: clamp(100px, 15vw, 120px);
border-radius: 50%;
overflow: hidden;
margin: 0 auto clamp(1rem, 2vw, 1.5rem);
border: 3px solid var(--gold);
}

.testimonial-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.testimonial-text {
font-style: italic;
color: var(--charcoal);
margin-bottom: 0.875rem;
font-size: clamp(0.875rem, 4vw, 0.9375rem);
line-height: 1.6;
}

.testimonial-author {
font-weight: 600;
color: var(--black);
text-transform: uppercase;
letter-spacing: 0.08em;
font-size: clamp(0.8125rem, 3.5vw, 0.875rem);
}

.process {
background-color: var(--beige);
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
gap: clamp(1.5rem, 3vw, 2rem);
margin-top: clamp(2rem, 4vw, 3rem);
width: 100%;
}

.step {
text-align: center;
padding: clamp(1.5rem, 3vw, 2rem);
width: 100%;
box-sizing: border-box;
}

.step-number {
font-family: 'Playfair Display', serif;
font-size: clamp(2rem, 5vw, 3rem);
color: var(--gold);
font-weight: 700;
margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.step h3 {
margin-bottom: 1rem;
}

.step p {
color: var(--charcoal);
}

.cta-section {
background-color: var(--black);
color: var(--white);
text-align: center;
padding: 5rem 0;
}

.cta-section h2 {
color: var(--white);
margin-bottom: 1rem;
}

.cta-section p {
color: var(--beige);
margin-bottom: 2rem;
font-size: clamp(1.125rem, 2.5vw, 1.25rem);
}

.page-hero {
background-color: var(--beige);
padding: 4rem 0;
text-align: center;
position: relative;
overflow: hidden;
min-height: 50vh;
display: flex;
align-items: center;
}

.page-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: cover;
background-position: center;
opacity: 0.3;
z-index: 0;
}

.page-hero .container {
position: relative;
z-index: 1;
}

.page-hero-services::before {
background-image: url('../images/background2.jpg');
}

.page-hero-about::before {
background-image: url('../images/background3.jpg');
}

.page-hero-contacts::before {
background-image: url('../images/background4.jpg');
}

.page-subtitle {
font-size: clamp(1.125rem, 2.5vw, 1.375rem);
color: var(--charcoal);
margin-top: 1rem;
}

.services-detailed {
padding: 5rem 0;
background-color: var(--white);
}

.service-detail {
margin-bottom: 5rem;
}

.service-detail:last-child {
margin-bottom: 0;
}

.service-detail-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(2rem, 4vw, 3rem);
align-items: center;
width: 100%;
}

.service-detail-content.reverse {
direction: rtl;
}

.service-detail-content.reverse > * {
direction: ltr;
}

.service-detail-text h2 {
margin-bottom: 1.5rem;
}

.service-detail-text p {
margin-bottom: 1.5rem;
color: var(--charcoal);
}

.service-detail-text ul {
list-style: none;
margin: 1.5rem 0;
}

.service-detail-text ul li {
padding: 0.5rem 0;
padding-left: 1.5rem;
position: relative;
color: var(--charcoal);
}

.service-detail-text ul li::before {
content: '→';
position: absolute;
left: 0;
color: var(--gold);
}

.service-detail-image img {
width: 100%;
height: auto;
border-radius: 4px;
}

.pricing-section {
background-color: var(--beige);
padding: 5rem 0;
}

.pricing-section h2 {
text-align: center;
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
gap: clamp(1.5rem, 3vw, 2rem);
margin-top: clamp(2rem, 4vw, 3rem);
width: 100%;
justify-items: center;
}

.pricing-card {
background-color: var(--white);
padding: clamp(1.75rem, 3vw, 2.5rem);
text-align: center;
border: 2px solid var(--beige);
transition: all 0.3s ease;
width: 100%;
max-width: 400px;
box-sizing: border-box;
}

.pricing-card:hover {
border-color: var(--gold);
transform: translateY(-5px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
border-color: var(--gold);
background: linear-gradient(135deg, var(--white) 0%, var(--beige) 100%);
}

.pricing-card h3 {
margin-bottom: 1rem;
}

.price {
font-family: 'Playfair Display', serif;
font-size: clamp(1.5rem, 3vw, 2rem);
color: var(--gold);
font-weight: 700;
margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.pricing-card ul {
list-style: none;
margin: 2rem 0;
text-align: left;
}

.pricing-card ul li {
padding: 0.75rem 0;
padding-left: 1.5rem;
position: relative;
color: var(--charcoal);
}

.pricing-card ul li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--gold);
font-weight: 600;
}

.about-intro {
padding: 5rem 0;
background-color: var(--white);
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(2rem, 4vw, 3rem);
align-items: center;
width: 100%;
}

.about-image img {
width: 100%;
height: auto;
border-radius: 4px;
}

.about-text h2 {
margin-bottom: 1.5rem;
}

.about-text p {
margin-bottom: 1.5rem;
color: var(--charcoal);
}

.approach-section {
padding: 5rem 0;
background-color: var(--beige);
}

.approach-section h2 {
text-align: center;
font-size: clamp(2rem, 4vw, 3rem);
margin-bottom: 1.5rem;
}

.approach-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.approach-item {
text-align: center;
padding: 3rem 2rem;
background-color: var(--white);
border-radius: 8px;
border: 1px solid var(--beige);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.approach-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--gold) 0%, var(--beige) 100%);
transform: scaleX(0);
transition: transform 0.3s ease;
}

.approach-item:hover {
transform: translateY(-8px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
border-color: var(--gold);
}

.approach-item:hover::before {
transform: scaleX(1);
}

.approach-icon {
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s ease;
}

.approach-icon svg {
width: 100%;
height: 100%;
transition: all 0.3s ease;
}

.approach-item:hover .approach-icon {
transform: scale(1.1);
}

.approach-item:hover .approach-icon svg {
filter: drop-shadow(0 4px 8px rgba(198, 169, 132, 0.3));
}

.approach-item h3 {
margin-bottom: 1rem;
color: var(--black);
font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.approach-item p {
color: var(--charcoal);
line-height: 1.7;
font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
}

.expertise-section {
padding: 5rem 0;
background-color: var(--white);
}

.expertise-section h2 {
text-align: center;
}

.expertise-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(2rem, 4vw, 3rem);
align-items: center;
margin-top: clamp(2rem, 4vw, 3rem);
width: 100%;
}

.expertise-text p {
margin-bottom: 1.5rem;
color: var(--charcoal);
}

.expertise-image img {
width: 100%;
height: auto;
border-radius: 4px;
}

.contact-section {
padding: 5rem 0;
background-color: var(--white);
}

.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(2rem, 5vw, 4rem);
margin-top: clamp(2rem, 4vw, 3rem);
width: 100%;
}

.contact-info h2 {
margin-bottom: 1.5rem;
}

.contact-intro {
color: var(--charcoal);
margin-bottom: 3rem;
font-size: clamp(1rem, 2vw, 1.125rem);
line-height: 1.7;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.contact-item {
display: flex;
align-items: flex-start;
gap: 1.5rem;
padding: 2rem;
background: linear-gradient(135deg, var(--white) 0%, var(--beige) 100%);
border-radius: 8px;
border: 1px solid var(--beige);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.contact-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: var(--gold);
transform: scaleY(0);
transition: transform 0.3s ease;
}

.contact-item:hover {
transform: translateX(8px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
border-color: var(--gold);
}

.contact-item:hover::before {
transform: scaleY(1);
}

.contact-item-icon {
width: clamp(50px, 8vw, 60px);
height: clamp(50px, 8vw, 60px);
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--white);
border-radius: 50%;
border: 2px solid var(--gold);
transition: all 0.3s ease;
}

.contact-item-icon svg {
width: clamp(28px, 5vw, 32px);
height: clamp(28px, 5vw, 32px);
transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon {
background-color: var(--gold);
transform: rotate(5deg) scale(1.1);
}

.contact-item:hover .contact-item-icon svg {
filter: brightness(0) invert(1);
}

.contact-item-content {
flex: 1;
}

.contact-item-content h3 {
margin-bottom: 0.75rem;
color: var(--black);
font-size: clamp(1.125rem, 2vw, 1.25rem);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
}

.contact-item-content p {
color: var(--charcoal);
margin: 0;
line-height: 1.7;
font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
}

.contact-form-wrapper h2 {
margin-bottom: 2rem;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.form-group {
display: flex;
flex-direction: column;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.form-group label {
margin-bottom: 0.5rem;
font-weight: 500;
color: var(--black);
text-transform: uppercase;
letter-spacing: 0.05em;
font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
}

.form-group input,
.form-group textarea {
padding: 1rem;
border: 1px solid var(--beige);
background-color: var(--white);
color: var(--charcoal);
font-family: 'Inter', sans-serif;
font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
transition: border-color 0.3s ease;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--gold);
}

.checkbox-group {
flex-direction: row;
align-items: center;
gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
width: auto;
margin: 0;
}

.checkbox-group label {
margin: 0;
text-transform: none;
letter-spacing: normal;
font-weight: 400;
}

.contact-map {
margin-top: 5rem;
padding-top: 5rem;
border-top: 1px solid var(--beige);
}

.contact-map h2 {
text-align: center;
margin-bottom: 1.5rem;
}

.map-container {
width: 100%;
max-width: 100%;
height: clamp(300px, 40vw, 450px);
border-radius: 4px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
border: 2px solid var(--beige);
box-sizing: border-box;
}

.map-container iframe {
width: 100%;
height: 100%;
border: none;
display: block;
}

.thank-you-section {
padding: 8rem 0;
background-color: var(--beige);
text-align: center;
min-height: 60vh;
display: flex;
align-items: center;
}

.thank-you-content {
max-width: 600px;
margin: 0 auto;
}

.thank-you-content h1 {
margin-bottom: 1.5rem;
}

.thank-you-content p {
margin-bottom: 1.5rem;
color: var(--charcoal);
font-size: clamp(1.0625rem, 2vw, 1.1875rem);
}

.policy-section {
padding: 5rem 0;
background-color: var(--white);
}

.policy-section h1 {
text-align: center;
margin-bottom: 1.5rem;
}

.policy-section .divider-gold {
margin: 0 auto 2rem;
}

.policy-content {
max-width: 800px;
margin: 0 auto;
}

.policy-content h2 {
margin-top: 2.5rem;
margin-bottom: 1rem;
}

.policy-content h2:first-of-type {
margin-top: 2rem;
}

.policy-content p {
color: var(--charcoal);
line-height: 1.8;
}

footer {
background-color: var(--black);
color: var(--white);
padding: 4rem 0 2rem;
width: 100%;
max-width: 100%;
overflow-x: hidden;
box-sizing: border-box;
}

footer .container {
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.footer-section h3,
.footer-section h4 {
color: var(--white);
margin-bottom: 1rem;
}

.footer-section p {
color: var(--beige);
margin-bottom: 0.5rem;
font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
}

.footer-section a {
color: var(--beige);
}

.footer-section a:hover {
color: var(--gold);
}

.footer-section ul {
list-style: none;
}

.footer-section ul li {
margin-bottom: 0.5rem;
}

.footer-bottom {
border-top: 1px solid var(--charcoal);
padding-top: 2rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.footer-bottom p {
color: var(--beige);
margin: 0;
font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
}

.privacy-links {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
}

.privacy-links a {
color: var(--beige);
font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
text-transform: uppercase;
letter-spacing: 0.05em;
}

.privacy-links a:hover {
color: var(--gold);
}

.privacy-popup {
display: none;
position: fixed;
bottom: 20px;
left: 20px;
right: 20px;
max-width: 500px;
background-color: var(--white);
border: 2px solid var(--gold);
padding: 2rem;
z-index: 10000;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.privacy-popup.show {
display: block;
animation: fadeInUp 0.5s ease;
}

.privacy-popup-content h3 {
margin-bottom: 1rem;
color: var(--black);
}

.privacy-popup-content p {
color: var(--charcoal);
margin-bottom: 1.5rem;
font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
}

.privacy-popup-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.privacy-popup-buttons button {
flex: 1;
min-width: 120px;
}

@media (max-width: 1024px) {
.container {
padding: 0 clamp(1.25rem, 3vw, 2rem);
}

section {
padding: clamp(3rem, 6vw, 4rem) 0;
}

.discovery-content,
.color-content,
.essentials-content,
.about-content,
.expertise-content,
.contact-content,
.service-detail-content {
gap: 3rem;
}

.contact-section {
padding: 4.5rem 0;
}

.contact-map {
margin-top: 4rem;
padding-top: 4rem;
}

.map-container {
height: 400px;
}

.transformation-grid,
.testimonials-grid,
.process-steps,
.pricing-grid,
.approach-grid,
.confidence-grid {
gap: 2rem;
}

.approach-section {
padding: 4.5rem 0;
}

.approach-section h2 {
font-size: clamp(1.75rem, 4vw, 2.5rem);
margin-bottom: 1.25rem;
}

.approach-grid {
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2rem;
}

.approach-item {
padding: 2.5rem 1.75rem;
}

.approach-icon {
width: 75px;
height: 75px;
margin-bottom: 1.25rem;
}

.thank-you-section {
padding: 6rem 0;
min-height: 50vh;
}

.thank-you-content {
max-width: 550px;
padding: 0 20px;
}
}

@media (max-width: 900px) {
.container {
padding: 0 clamp(1rem, 3vw, 1.5rem);
}

section {
padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.hero {
min-height: clamp(70vh, 80vh, 85vh);
}

.page-hero {
min-height: clamp(40vh, 45vh, 50vh);
}

.discovery-content,
.color-content,
.essentials-content,
.about-content,
.expertise-content,
.contact-content,
.service-detail-content {
gap: 2.5rem;
}

.contact-section {
padding: 4rem 0;
}

.contact-map {
margin-top: 3.5rem;
padding-top: 3.5rem;
}

.map-container {
height: 380px;
}

.transformation-grid,
.testimonials-grid,
.process-steps,
.pricing-grid,
.approach-grid,
.confidence-grid {
gap: 1.75rem;
}

.approach-section {
padding: 4rem 0;
}

.approach-section h2 {
font-size: clamp(1.75rem, 4vw, 2.5rem);
margin-bottom: 1.25rem;
}

.approach-grid {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.75rem;
}

.approach-item {
padding: 2.25rem 1.5rem;
}

.approach-icon {
width: 70px;
height: 70px;
margin-bottom: 1.25rem;
}

.thank-you-section {
padding: 5rem 0;
min-height: 45vh;
}

.thank-you-content {
max-width: 500px;
padding: 0 15px;
}
}

@media (max-width: 768px) {
.container {
padding: 0 clamp(1rem, 2.5vw, 1.25rem);
}

section {
padding: clamp(2.5rem, 4vw, 3rem) 0;
}

.hero {
min-height: clamp(60vh, 70vh, 75vh);
}

.page-hero {
min-height: clamp(35vh, 40vh, 45vh);
padding: clamp(2rem, 3vw, 3rem) 0;
}

.color-palette-visual {
max-width: 100%;
grid-template-columns: 1fr !important;
gap: 1.5rem;
width: 100%;
}

.color-swatch {
width: 120px;
height: 120px;
max-width: 100%;
}

.discovery-content,
.color-content,
.essentials-content,
.about-content,
.expertise-content,
.contact-content,
.service-detail-content {
grid-template-columns: 1fr !important;
gap: 2rem;
width: 100%;
max-width: 100%;
}

.essentials-image,
.essentials-text {
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.contact-section {
padding: 3.5rem 0;
}

.contact-info,
.contact-form-wrapper {
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.contact-intro {
margin-bottom: 2rem;
font-size: clamp(0.9375rem, 2vw, 1.0625rem);
}

.contact-item {
padding: 1.75rem;
gap: 1.25rem;
}

.contact-item-content h3 {
font-size: clamp(1rem, 2vw, 1.125rem);
}

.contact-item-content p {
font-size: clamp(0.875rem, 1.75vw, 1rem);
}

.contact-form-wrapper h2 {
font-size: clamp(1.5rem, 4vw, 1.75rem);
margin-bottom: 1.5rem;
}

.contact-map {
margin-top: 3rem;
padding-top: 3rem;
}

.contact-map h2 {
font-size: clamp(1.5rem, 4vw, 1.75rem);
}

.map-container {
height: 350px;
}

.transformation-grid,
.testimonials-grid,
.process-steps,
.pricing-grid,
.approach-grid,
.confidence-grid {
gap: 1.5rem;
}

.approach-section {
padding: 3.5rem 0;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.approach-section h2 {
font-size: clamp(1.5rem, 4vw, 2rem);
margin-bottom: 1rem;
}

.approach-grid {
grid-template-columns: 1fr !important;
gap: 1.5rem;
width: 100%;
max-width: 100%;
margin-top: 2rem;
}

.approach-item {
padding: 2rem 1.5rem;
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.approach-icon {
width: 65px;
height: 65px;
margin-bottom: 1rem;
}

.approach-item h3 {
font-size: clamp(1.125rem, 2.5vw, 1.375rem);
margin-bottom: 0.875rem;
}

.approach-item p {
font-size: clamp(0.875rem, 1.75vw, 1rem);
line-height: 1.6;
}

.thank-you-section {
padding: 4rem 0;
min-height: 40vh;
}

.thank-you-content {
max-width: 100%;
padding: 0 15px;
}

.thank-you-content h1 {
font-size: clamp(2rem, 6vw, 2.5rem);
margin-bottom: 1.25rem;
}

.thank-you-content p {
font-size: clamp(1rem, 3vw, 1.125rem);
margin-bottom: 1.25rem;
}
}

@media (max-width: 670px) {
.nav-container {
padding: 1rem 15px;
gap: 0.75rem;
}

.menu-toggle {
display: flex;
}

.nav-menu {
position: fixed;
top: clamp(60px, 8vw, 70px);
left: -100%;
width: 100%;
background-color: var(--white);
flex-direction: column;
padding: clamp(1.5rem, 3vw, 2rem);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transition: left 0.3s ease;
gap: clamp(1rem, 2vw, 1.5rem);
align-items: flex-start;
z-index: 999;
max-height: calc(100vh - clamp(60px, 8vw, 70px));
overflow-y: auto;
}

.nav-menu.active {
left: 0;
}

.nav-menu a {
font-size: 1rem;
letter-spacing: 0.05em;
padding: 0.5rem 0;
width: 100%;
}

.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}

.approach-section {
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.approach-grid {
grid-template-columns: 1fr !important;
gap: 1.5rem;
width: 100%;
max-width: 100%;
}

.approach-item {
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.contact-item {
flex-direction: column;
text-align: center;
align-items: center;
padding: 1.5rem;
}

.contact-item:hover {
transform: translateY(-5px);
}

.contact-item::before {
width: 100%;
height: 4px;
transform: scaleX(0);
}

.contact-item:hover::before {
transform: scaleX(1);
}

.contact-item-icon {
margin-bottom: 1rem;
}

.service-detail-content.reverse {
direction: ltr;
}
}

@media (max-width: 550px) {
.approach-grid {
grid-template-columns: 1fr !important;
gap: 1.5rem;
width: 100%;
max-width: 100%;
}

.approach-item {
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}
}

@media (max-width: 600px) {
.container {
padding: 0 clamp(0.875rem, 2vw, 1.125rem);
}

section {
padding: clamp(2rem, 3.5vw, 2.5rem) 0;
}

.hero {
min-height: clamp(55vh, 60vh, 65vh);
}

.page-hero {
min-height: clamp(30vh, 35vh, 40vh);
padding: clamp(1.75rem, 2.5vw, 2.5rem) 0;
}

h1 {
font-size: clamp(2rem, 6vw, 3rem);
}

h2 {
font-size: clamp(1.75rem, 5vw, 2.5rem);
}

h3 {
font-size: clamp(1.25rem, 4vw, 1.75rem);
}

.btn-gold,
.btn-gold-outline {
padding: clamp(0.875rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
font-size: clamp(0.875rem, 1.5vw, 0.9rem);
width: 100%;
max-width: min(300px, 90%);
display: inline-block;
text-align: center;
box-sizing: border-box;
}

.color-palette-visual {
gap: 1.25rem;
}

.color-swatch {
width: 100px;
height: 100px;
}

.essentials-content {
grid-template-columns: 1fr !important;
gap: 2.5rem;
}

.essentials-image,
.essentials-text {
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.contact-section {
padding: 3rem 0;
}

.contact-info,
.contact-form-wrapper {
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.contact-intro {
margin-bottom: 1.75rem;
font-size: clamp(0.9375rem, 2vw, 1rem);
}

.contact-item {
padding: 1.5rem;
gap: 1rem;
}

.contact-item-icon {
width: 55px;
height: 55px;
}

.contact-item-icon svg {
width: 28px;
height: 28px;
}

.contact-item-content h3 {
font-size: clamp(0.9375rem, 2vw, 1.0625rem);
margin-bottom: 0.5rem;
}

.contact-item-content p {
font-size: clamp(0.875rem, 1.75vw, 0.9375rem);
}

.contact-form-wrapper h2 {
font-size: clamp(1.5rem, 4vw, 1.75rem);
margin-bottom: 1.5rem;
}

.contact-map {
margin-top: 2.5rem;
padding-top: 2.5rem;
}

.contact-map h2 {
font-size: clamp(1.5rem, 4vw, 1.75rem);
}

.map-container {
height: 350px;
}

.transformation-image {
height: 400px;
}

.map-container {
height: 350px;
}

.approach-section {
padding: 3rem 0;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.approach-grid {
grid-template-columns: 1fr !important;
gap: 1.5rem;
width: 100%;
max-width: 100%;
}

.approach-item {
padding: 1.75rem 1.25rem;
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.thank-you-section {
padding: 3.5rem 0;
min-height: 35vh;
}

.thank-you-content {
max-width: 100%;
padding: 0 10px;
}

.thank-you-content h1 {
font-size: clamp(1.75rem, 7vw, 2.25rem);
margin-bottom: 1rem;
}

.thank-you-content p {
font-size: clamp(0.9375rem, 3.5vw, 1.0625rem);
margin-bottom: 1rem;
}
}

@media (max-width: 480px) {
section {
padding: clamp(2rem, 3vw, 2.5rem) 0;
}

.container {
padding: 0 clamp(0.75rem, 2vw, 1rem);
}

.nav-container {
padding: 1rem 15px;
gap: 0.75rem;
}

.logo {
font-size: clamp(0.75rem, 2vw, 1rem);
letter-spacing: 0.03em;
}

.nav-menu {
gap: 0.4rem;
}

.nav-menu a {
font-size: clamp(0.55rem, 1vw, 0.75rem);
letter-spacing: 0.02em;
padding: 0.2rem 0;
}

.btn-gold,
.btn-gold-outline {
padding: 0.875rem 1.75rem;
font-size: 0.875rem;
width: 100%;
max-width: 280px;
}

.hero {
min-height: 55vh;
}

.page-hero {
min-height: 30vh;
padding: 2rem 0;
}

h1 {
font-size: clamp(1.75rem, 7vw, 2.5rem);
}

h2 {
font-size: clamp(1.5rem, 6vw, 2rem);
}

h3 {
font-size: clamp(1.125rem, 5vw, 1.5rem);
}

.hero-subtitle {
font-size: clamp(1rem, 3.5vw, 1.25rem);
}

.page-subtitle {
font-size: clamp(0.9375rem, 3vw, 1.125rem);
}

.color-palette-visual {
gap: 1rem;
}

.color-swatch {
width: 90px;
height: 90px;
}

.transformation-grid,
.testimonials-grid,
.process-steps,
.pricing-grid,
.approach-grid,
.confidence-grid {
grid-template-columns: 1fr;
}

.approach-section {
padding: 2.5rem 0;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.approach-section h2 {
font-size: clamp(1.25rem, 4vw, 1.5rem);
margin-bottom: 0.875rem;
}

.approach-grid {
grid-template-columns: 1fr !important;
gap: 1.25rem;
width: 100%;
max-width: 100%;
margin-top: 2rem;
}

.approach-item {
padding: 1.5rem 1.25rem;
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.approach-icon {
width: 55px;
height: 55px;
margin-bottom: 0.875rem;
}

.approach-item h3 {
font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
margin-bottom: 0.625rem;
}

.approach-item p {
font-size: clamp(0.8125rem, 1.75vw, 0.875rem);
line-height: 1.6;
}

.essentials-content {
grid-template-columns: 1fr !important;
gap: 2rem;
}

.essentials-image,
.essentials-text {
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.contact-section {
padding: 2.5rem 0;
}

.contact-info,
.contact-form-wrapper {
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.contact-intro {
margin-bottom: 1.5rem;
font-size: clamp(0.875rem, 2vw, 0.9375rem);
}

.contact-item {
padding: 1.25rem;
gap: 0.875rem;
}

.contact-item-icon {
width: 50px;
height: 50px;
}

.contact-item-icon svg {
width: 24px;
height: 24px;
}

.contact-item-content h3 {
font-size: clamp(0.875rem, 2vw, 1rem);
margin-bottom: 0.5rem;
}

.contact-item-content p {
font-size: clamp(0.8125rem, 1.75vw, 0.875rem);
line-height: 1.6;
}

.contact-form-wrapper h2 {
font-size: clamp(1.25rem, 4vw, 1.5rem);
margin-bottom: 1.25rem;
}

.contact-map {
margin-top: 2rem;
padding-top: 2rem;
}

.contact-map h2 {
font-size: clamp(1.25rem, 4vw, 1.5rem);
margin-bottom: 1rem;
}

.map-container {
height: 300px;
}

.approach-section {
padding: 3rem 0;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.approach-section h2 {
font-size: clamp(1.5rem, 4vw, 1.75rem);
margin-bottom: 1rem;
}

.approach-grid {
grid-template-columns: 1fr !important;
gap: 1.25rem;
width: 100%;
max-width: 100%;
margin-top: 2rem;
}

.approach-item {
padding: 1.75rem 1.25rem;
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.approach-icon {
width: 60px;
height: 60px;
margin-bottom: 1rem;
}

.approach-item h3 {
font-size: clamp(1rem, 2.5vw, 1.25rem);
margin-bottom: 0.75rem;
}

.approach-item p {
font-size: clamp(0.8125rem, 1.75vw, 0.9375rem);
line-height: 1.6;
}

.animated-circle {
width: 150px;
height: 150px;
}

.transformation-image {
height: 400px;
}

.privacy-popup {
left: 10px;
right: 10px;
bottom: 10px;
padding: 1.5rem;
}
}

@media (max-width: 320px) {
html {
min-width: 320px;
overflow-x: hidden;
-webkit-text-size-adjust: 100%;
}

body {
min-width: 320px;
overflow-x: hidden;
-webkit-text-size-adjust: 100%;
}

h1 {
font-size: clamp(1.5rem, 8vw, 2rem);
line-height: 1.2;
margin-bottom: 0.75rem;
}

h2 {
font-size: clamp(1.25rem, 7vw, 1.75rem);
line-height: 1.3;
margin-bottom: 1rem;
}

h3 {
font-size: clamp(1rem, 6vw, 1.25rem);
line-height: 1.3;
margin-bottom: 0.75rem;
}

h4 {
font-size: clamp(0.9375rem, 5vw, 1.125rem);
}

p {
font-size: clamp(0.875rem, 4vw, 1rem);
line-height: 1.6;
}

.container {
padding: 0 10px;
min-width: 0;
max-width: 100%;
box-sizing: border-box;
}

section {
padding: 2rem 0 !important;
}

.style-discovery,
.transformation-process,
.confidence-building,
.color-analysis,
.before-after,
.wardrobe-essentials,
.testimonials,
.process,
.about-intro,
.expertise-section,
.approach-section {
padding: 2rem 0 !important;
}

.about-content,
.expertise-content {
grid-template-columns: 1fr !important;
gap: 1.5rem !important;
width: 100%;
max-width: 100%;
}

.about-image,
.about-text,
.expertise-image,
.expertise-text {
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.about-image img,
.expertise-image img {
width: 100%;
max-width: 100%;
height: auto;
display: block;
}

.about-text h2,
.expertise-section h2 {
font-size: clamp(1.25rem, 4vw, 1.5rem);
margin-bottom: 1rem;
}

.about-text p,
.expertise-text p {
font-size: clamp(0.8125rem, 1.75vw, 0.9375rem);
line-height: 1.6;
margin-bottom: 1rem;
}

.thank-you-section {
padding: 2.5rem 0 !important;
min-height: 25vh;
}

.thank-you-content {
max-width: 100%;
padding: 0 8px;
width: 100%;
box-sizing: border-box;
}

.thank-you-content h1 {
font-size: clamp(1.5rem, 8vw, 2rem);
margin-bottom: 0.75rem;
}

.thank-you-content p {
font-size: clamp(0.8125rem, 3.5vw, 0.9375rem);
margin-bottom: 0.75rem;
line-height: 1.6;
}

.thank-you-content .btn-gold {
width: 100%;
max-width: 260px;
padding: 0.75rem 1.5rem;
font-size: 0.8125rem;
}

.contact-section {
padding: 2rem 0 !important;
}

.contact-info,
.contact-form-wrapper {
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.contact-intro {
margin-bottom: 1.25rem;
font-size: clamp(0.8125rem, 2vw, 0.875rem);
line-height: 1.6;
}

.contact-details {
gap: 1rem;
}

.contact-item {
padding: 1rem;
gap: 0.75rem;
flex-direction: column;
text-align: center;
align-items: center;
}

.contact-item-icon {
width: 45px;
height: 45px;
margin-bottom: 0.5rem;
}

.contact-item-icon svg {
width: 20px;
height: 20px;
}

.contact-item-content {
text-align: center;
}

.contact-item-content h3 {
font-size: clamp(0.8125rem, 2vw, 0.9375rem);
margin-bottom: 0.375rem;
}

.contact-item-content p {
font-size: clamp(0.75rem, 1.75vw, 0.8125rem);
line-height: 1.5;
}

.contact-form-wrapper h2 {
font-size: clamp(1.125rem, 4vw, 1.25rem);
margin-bottom: 1rem;
}

.contact-form {
gap: 1rem;
}

.form-group label {
font-size: clamp(0.75rem, 1.5vw, 0.8125rem);
margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
padding: 0.75rem;
font-size: clamp(0.8125rem, 1.75vw, 0.875rem);
}

.checkbox-group {
gap: 0.5rem;
}

.checkbox-group label {
font-size: clamp(0.75rem, 1.5vw, 0.8125rem);
}

.contact-map {
margin-top: 1.5rem;
padding-top: 1.5rem;
}

.contact-map h2 {
font-size: clamp(1.125rem, 4vw, 1.25rem);
margin-bottom: 0.875rem;
}

.map-container {
height: 250px;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.map-container iframe {
width: 100%;
max-width: 100%;
height: 100%;
}

.nav-container {
padding: 0.875rem 10px;
gap: 0.5rem;
min-width: 0;
max-width: 100%;
box-sizing: border-box;
}

.logo {
font-size: clamp(0.75rem, 3vw, 0.875rem);
letter-spacing: 0.02em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: calc(100% - 50px);
flex-shrink: 1;
}

.nav-menu {
gap: 0.3rem;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.nav-menu a {
font-size: clamp(0.5rem, 1vw, 0.65rem);
letter-spacing: 0.01em;
padding: 0.15rem 0;
word-break: break-word;
}

.hero {
min-height: 50vh;
padding: 1.5rem 0.5rem;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.hero-content {
padding: 1rem 0.5rem;
}

.hero h1 {
font-size: clamp(1.5rem, 8vw, 2rem);
margin-bottom: 0.75rem;
line-height: 1.2;
}

.hero-subtitle {
font-size: clamp(0.875rem, 4vw, 1rem);
margin-bottom: 1.5rem;
line-height: 1.4;
}

.page-hero {
min-height: 28vh;
padding: 1.5rem 0.5rem;
}

.page-hero h1 {
font-size: clamp(1.5rem, 8vw, 2rem);
margin-bottom: 0.75rem;
}

.page-subtitle {
font-size: clamp(0.875rem, 4vw, 1rem);
margin-top: 0.75rem;
}

.btn-gold,
.btn-gold-outline {
padding: 0.875rem 1.25rem;
font-size: 0.8125rem;
width: 100%;
max-width: 280px;
text-align: center;
margin: 0.5rem auto;
display: block;
line-height: 1.4;
}

.service-icon,
.approach-icon,
.confidence-icon,
.contact-item-icon {
width: 50px;
height: 50px;
}

.service-icon svg,
.approach-icon svg,
.confidence-icon svg,
.contact-item-icon svg {
width: 24px;
height: 24px;
}

.approach-section {
padding: 2rem 0 !important;
}

.approach-section h2 {
font-size: clamp(1.125rem, 4vw, 1.25rem);
margin-bottom: 0.75rem;
}

.approach-grid {
grid-template-columns: 1fr !important;
gap: 1rem !important;
width: 100%;
max-width: 100%;
margin-top: 2rem;
}

.approach-item {
padding: 1.25rem 1rem !important;
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.approach-icon {
width: 50px;
height: 50px;
margin-bottom: 0.75rem;
}

.approach-icon svg {
width: 100%;
height: 100%;
}

.approach-item h3 {
font-size: clamp(0.875rem, 2.5vw, 1rem);
margin-bottom: 0.5rem;
}

.approach-item p {
font-size: clamp(0.75rem, 1.75vw, 0.8125rem);
line-height: 1.5;
}

.contact-section {
padding: 2rem 0 !important;
}

.contact-info,
.contact-form-wrapper {
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.contact-intro {
margin-bottom: 1.25rem;
font-size: clamp(0.8125rem, 2vw, 0.875rem);
line-height: 1.6;
}

.contact-details {
gap: 1rem;
}

.contact-item {
padding: 1rem;
gap: 0.75rem;
flex-direction: column;
text-align: center;
align-items: center;
}

.contact-item-icon {
width: 45px;
height: 45px;
margin-bottom: 0.5rem;
}

.contact-item-icon svg {
width: 20px;
height: 20px;
}

.contact-item-content {
text-align: center;
}

.contact-item-content h3 {
font-size: clamp(0.8125rem, 2vw, 0.9375rem);
margin-bottom: 0.375rem;
}

.contact-item-content p {
font-size: clamp(0.75rem, 1.75vw, 0.8125rem);
line-height: 1.5;
}

.contact-form-wrapper h2 {
font-size: clamp(1.125rem, 4vw, 1.25rem);
margin-bottom: 1rem;
}

.contact-form {
gap: 1rem;
}

.form-group label {
font-size: clamp(0.75rem, 1.5vw, 0.8125rem);
margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
padding: 0.75rem;
font-size: clamp(0.8125rem, 1.75vw, 0.875rem);
}

.checkbox-group {
gap: 0.5rem;
}

.checkbox-group label {
font-size: clamp(0.75rem, 1.5vw, 0.8125rem);
}

.contact-map {
margin-top: 1.5rem;
padding-top: 1.5rem;
}

.contact-map h2 {
font-size: clamp(1.125rem, 4vw, 1.25rem);
margin-bottom: 0.875rem;
}

.map-container {
height: 250px;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.map-container iframe {
width: 100%;
max-width: 100%;
height: 100%;
}

.timeline-number {
width: 45px;
height: 45px;
font-size: 1.125rem;
}

.timeline-content h3 {
font-size: clamp(1rem, 5vw, 1.125rem);
margin-bottom: 0.5rem;
}

.timeline-content p {
font-size: clamp(0.875rem, 4vw, 0.9375rem);
}

.animated-circle {
width: 120px;
height: 120px;
max-width: 100%;
}

.color-swatch {
width: 80px;
height: 80px;
max-width: 100%;
}

.color-palette-visual {
grid-template-columns: repeat(2, 1fr) !important;
gap: 1rem;
max-width: 100%;
width: 100%;
justify-items: center;
}

.color-swatch-item {
width: 100%;
max-width: 120px;
}

.color-name {
font-size: clamp(0.6875rem, 3vw, 0.75rem);
text-align: center;
}

.discovery-feature {
padding: 0.5rem 0;
}

.feature-check {
width: 20px;
height: 20px;
font-size: 0.75rem;
}

.transformation-image {
height: clamp(220px, 50vw, 250px);
min-height: 220px;
}

.transformation-text h3 {
font-size: clamp(1rem, 5vw, 1.125rem);
margin-bottom: 0.75rem;
}

.transformation-text p {
font-size: clamp(0.875rem, 4vw, 0.9375rem);
}

.map-container {
height: 250px;
}

.privacy-popup {
padding: 1rem;
left: 5px;
right: 5px;
bottom: 5px;
max-width: calc(100% - 10px);
}

.privacy-popup-content h3 {
font-size: 1.125rem;
}

.privacy-popup-content p {
font-size: 0.875rem;
}

.footer-content {
grid-template-columns: 1fr !important;
gap: 1.5rem;
text-align: center;
width: 100%;
max-width: 100%;
box-sizing: border-box;
min-width: 0;
}

footer {
width: 100%;
max-width: 100%;
overflow-x: hidden;
}

footer .container {
width: 100%;
max-width: 100%;
box-sizing: border-box;
padding: 0 10px;
}

.footer-bottom {
width: 100%;
max-width: 100%;
box-sizing: border-box;
flex-direction: column;
text-align: center;
}

.footer-section {
width: 100%;
max-width: 100%;
box-sizing: border-box;
min-width: 0;
}

.privacy-links {
flex-wrap: wrap;
gap: 0.75rem;
justify-content: center;
}

.privacy-links a {
font-size: 0.75rem;
}

.form-group input,
.form-group textarea {
padding: 0.875rem;
font-size: 0.875rem;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.contact-form-wrapper {
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

.contact-content {
width: 100%;
max-width: 100%;
gap: 1.5rem !important;
}

.discovery-content,
.color-content,
.essentials-content,
.about-content,
.expertise-content,
.contact-content,
.service-detail-content {
gap: 1.25rem !important;
width: 100%;
max-width: 100%;
margin-top: 1.5rem;
}

.discovery-content *,
.color-content *,
.essentials-content *,
.about-content *,
.expertise-content *,
.contact-content *,
.service-detail-content * {
min-width: 0;
max-width: 100%;
box-sizing: border-box;
}

.discovery-text {
text-align: center;
}

.discovery-text h3 {
font-size: clamp(1.125rem, 6vw, 1.375rem);
margin-bottom: 1rem;
}

.discovery-text p {
font-size: clamp(0.875rem, 4vw, 1rem);
margin-bottom: 1.25rem;
}

.discovery-visual {
margin-top: 1.5rem;
}

.process-timeline {
gap: 1.5rem;
}

.timeline-item {
gap: 0.75rem;
flex-wrap: wrap;
flex-direction: column;
align-items: center;
text-align: center;
}

.timeline-content {
min-width: 0;
flex: 1 1 auto;
max-width: 100%;
}

.timeline-line {
display: none;
}

.confidence-grid {
gap: 1.25rem;
grid-template-columns: 1fr;
}

.confidence-item {
padding: 1.5rem 1rem;
}

.confidence-icon {
width: 60px;
height: 60px;
margin-bottom: 1rem;
}

.transformation-grid {
gap: 1.5rem;
grid-template-columns: 1fr;
}

.testimonials-grid {
gap: 1.25rem;
grid-template-columns: 1fr;
}

.testimonial-card {
padding: 1.5rem 1rem;
}

.process-steps {
gap: 1.5rem;
grid-template-columns: 1fr;
}

.step {
padding: 1.25rem 0.75rem;
}

.step-number {
font-size: 2rem;
margin-bottom: 0.75rem;
}

.step h3 {
font-size: clamp(1rem, 5vw, 1.125rem);
margin-bottom: 0.75rem;
}

.step p {
font-size: clamp(0.875rem, 4vw, 0.9375rem);
line-height: 1.6;
}

.step {
padding: 1rem 0.75rem;
min-width: 0;
width: 100%;
box-sizing: border-box;
}

.testimonial-card {
padding: 1rem 0.75rem;
min-width: 0;
width: 100%;
box-sizing: border-box;
}

.confidence-item {
padding: 1.25rem 0.75rem;
min-width: 0;
width: 100%;
box-sizing: border-box;
}

.essentials-content {
grid-template-columns: 1fr !important;
gap: 1.5rem !important;
width: 100%;
max-width: 100%;
margin-top: 1.5rem;
}

.essentials-image {
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}

.essentials-image img {
width: 100%;
max-width: 100%;
height: auto;
display: block;
border-radius: 4px;
}

.essentials-text {
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
text-align: center;
}

.essentials-text h3 {
font-size: clamp(1.125rem, 6vw, 1.375rem);
margin-bottom: 1rem;
}

.essentials-text p {
font-size: clamp(0.875rem, 4vw, 1rem);
line-height: 1.6;
margin-bottom: 1.25rem;
}

.hero-content {
padding: 1.5rem 1rem;
width: 100%;
max-width: 100%;
box-sizing: border-box;
min-width: 0;
}

.cta-section {
padding: 3rem 1rem;
}

.color-swatch-item {
min-width: 0;
width: 100%;
max-width: 100%;
}

.transformation-item {
min-width: 0;
width: 100%;
max-width: 100%;
}

.testimonials-grid,
.process-steps,
.confidence-grid,
.transformation-grid,
.approach-grid,
.pricing-grid {
grid-template-columns: 1fr !important;
min-width: 0 !important;
width: 100%;
gap: 1.25rem;
}

.pricing-card {
padding: 1.75rem 1.25rem;
max-width: 100%;
}

.testimonials-grid *,
.process-steps *,
.confidence-grid *,
.transformation-grid *,
.approach-grid *,
.pricing-grid * {
min-width: 0 !important;
max-width: 100% !important;
width: 100% !important;
box-sizing: border-box !important;
}

.divider-gold {
width: 50px;
margin: 1rem auto;
}

.hero-subtitle,
.page-subtitle {
font-size: clamp(0.875rem, 4vw, 1rem);
}

.cta-section {
padding: 2.5rem 1rem;
}

.cta-section h2 {
font-size: clamp(1.5rem, 7vw, 2rem);
margin-bottom: 0.75rem;
}

.cta-section p {
font-size: clamp(0.9375rem, 4vw, 1.125rem);
margin-bottom: 1.5rem;
}
}
