:root {
--royal-purple: #351b5a;
--deep-purple: #26143f;
--deeper-purple: #1a0e2e;
--gold: #c7a24b;
--gold-highlight: #d8b968;
--gold-soft: #e8d49a;
--antique-gold: #9e7a2d;
--emerald: #2d7a3d;
--emerald-light: #4aa35a;
--ivory: #f7f4f0;
--ivory-warm: #f1ebe3;
--cream: #ede5d8;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Montserrat', sans-serif;
background: var(--ivory);
color: var(--deep-purple);
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

::selection {
background: var(--gold);
color: var(--deep-purple);
}

/* ============ TYPOGRAPHY ============ */
.display {
font-family: 'Cinzel', serif;
letter-spacing: 0.04em;
}
.accent {
font-family: 'Cormorant Garamond', serif;
font-style: italic;
}

/* ============ NAV ============ */
nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
padding: 1.4rem 3rem;
display: flex;
align-items: center;
justify-content: space-between;
background: rgba(26, 14, 46, 0);
backdrop-filter: blur(0);
transition: all 0.5s ease;
}
nav.scrolled {
backdrop-filter: blur(16px);
padding: 1rem 3rem;
background-color: rgba(255, 255, 255, 0.5);
border-bottom: 1px solid rgba(199, 162, 75, 0.2);
}
.nav-logo {
font-family: 'Cinzel', serif;
color: var(--gold-highlight);
font-size: 1.05rem;
letter-spacing: 0.25em;
font-weight: 500;
}
.nav-logo span {
color: var(--deep-purple);
}

.nav-logo-image{
    width: 80px;
}

.navbar-logo{
    height: 25px;
    background-color: white;
}

.nav-links {
display: flex;
gap: 2.4rem;
list-style: none;
}
.nav-links a {
color: var(--deep-purple);
text-decoration: none;
font-size: 0.78rem;
letter-spacing: 0.22em;
text-transform: uppercase;
font-weight: 400;
position: relative;
transition: color 0.3s;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -6px;
left: 0;
width: 0;
height: 1px;
background: var(--gold);
transition: width 0.4s ease;
}
.nav-links a:hover {
color: var(--gold-highlight);
}
.nav-links a:hover::after {
width: 100%;
}
.nav-cta {
border: 1px solid var(--deep-purple);
color: var(--deep-purple);
padding: 0.7rem 1.4rem;
text-decoration: none;
font-size: 0.72rem;
letter-spacing: 0.22em;
text-transform: uppercase;
transition: all 0.4s;
}
.nav-cta:hover {
background: var(--gold);
color: var(--deep-purple);
}

.menu-toggle {
display: none;
background: none;
border: none;
color: var(--gold-highlight);
font-size: 1.5rem;
cursor: pointer;
}

/* ============ HERO ============ */
.hero {
min-height: 100vh;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 8rem 2rem 6rem;
color: var(--deep-purple);
}

/* Decorative gold particles */
.hero::before {
content: '';
position: absolute;
inset: 0;
background-image: radial-gradient(circle at 15% 25%, rgba(216, 185, 104, 0.18) 0%, transparent 1.5%), radial-gradient(circle at 85% 75%, rgba(216, 185, 104, 0.14) 0%, transparent 1.5%), radial-gradient(circle at 70% 30%, rgba(216, 185, 104, 0.12) 0%, transparent 1%), radial-gradient(circle at 30% 80%, rgba(216, 185, 104, 0.15) 0%, transparent 1.2%), radial-gradient(circle at 50% 10%, rgba(216, 185, 104, 0.1) 0%, transparent 1%), radial-gradient(circle at 90% 20%, rgba(216, 185, 104, 0.12) 0%, transparent 1%);
pointer-events: none;
}

/* Ornamental frame */
.hero::after {
content: '';
position: absolute;
top: 5rem;
left: 3rem;
right: 3rem;
bottom: 3rem;
border: 1px solid var(--deep-purple);
pointer-events: none;
}

.hero-logo{
    width: 80px;
}

.hero-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 900px;
}

.hero-eyebrow {
color: var(--deep-purple);
font-size: 0.75rem;
letter-spacing: 0.5em;
text-transform: uppercase;
margin-bottom: 2.5rem;
opacity: 0;
animation: fadeUp 1s ease 0.3s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
content: '';
display: inline-block;
width: 40px;
height: 1px;
background: var(--deep-purple);
vertical-align: middle;
margin: 0 1.5rem;
}

.hero-crown {
display: block;
margin: 0 auto 1.5rem;
width: 90px;
height: 90px;
opacity: 0;
animation: fadeUp 1s ease 0.1s forwards;
}

.hero h1 {
font-family: 'Cinzel', serif;
color: var(--deep-purple);
font-size: clamp(2.5rem, 6vw, 5rem);
font-weight: 500;
letter-spacing: 0.08em;
line-height: 1.05;
margin-bottom: 1rem;
opacity: 0;
animation: fadeUp 1s ease 0.5s forwards;
}
.hero h1 .gold-text {
background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold-highlight) 50%, var(--antique-gold) 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.hero-wellness {
font-family: 'Cinzel', serif;
color: var(--gold-highlight);
font-size: clamp(1rem, 2vw, 1.4rem);
letter-spacing: 0.6em;
text-indent: 0.6em;
margin-bottom: 2.5rem;
opacity: 0;
animation: fadeUp 1s ease 0.7s forwards;
position: relative;
display: inline-block;
}
.hero-wellness::before,
.hero-wellness::after {
content: '';
position: absolute;
top: 50%;
width: 60px;
height: 1px;
background: var(--gold);
}
.hero-wellness::before {
right: 100%;
margin-right: 1.5rem;
}
.hero-wellness::after {
left: 100%;
margin-left: 0.9rem;
}

.hero-tagline {
font-family: 'Cinzel', serif;
color: var(--deep-purple);
font-size: clamp(0.9rem, 1.6vw, 1.2rem);
letter-spacing: 0.45em;
margin-bottom: 3rem;
opacity: 0;
animation: fadeUp 1s ease 0.9s forwards;
}
.hero-tagline .dot {
color: var(--gold-highlight);
margin: 0 0.5rem;
}

.hero-sub {
font-family: 'Cormorant Garamond', serif;
font-style: italic;
color: var(--deep-purple);
opacity: 0.85;
font-size: clamp(1.1rem, 1.8vw, 1.5rem);
margin-bottom: 3rem;
font-weight: 300;
line-height: 1.4;
opacity: 0;
animation: fadeUp 1s ease 1.1s forwards;
}

.hero-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
opacity: 0;
animation: fadeUp 1s ease 1.3s forwards;
}

.btn-primary,
.btn-secondary {
padding: 1.1rem 2.5rem;
text-decoration: none;
font-size: 0.78rem;
letter-spacing: 0.3em;
text-transform: uppercase;
transition: all 0.4s ease;
display: inline-block;
position: relative;
cursor: pointer;
border: none;
font-family: 'Montserrat', sans-serif;
font-weight: 500;
}
.btn-primary {
background: linear-gradient(135deg, var(--gold) 0%, var(--gold-highlight) 100%);
color: var(--deep-purple);
box-shadow: 0 8px 32px rgba(199, 162, 75, 0.3);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(199, 162, 75, 0.5);
}
.btn-secondary {
background: transparent;
color: var(--gold-highlight);
border: 1px solid var(--gold);
}
.btn-secondary:hover {
background: rgba(199, 162, 75, 0.1);
color: var(--ivory);
}

/* Hero corner ornaments */
.corner-ornament {
position: absolute;
width: 60px;
height: 60px;
border: 1px solid var(--deep-purple);
opacity: 0.6;
}
.corner-ornament.tl {
top: 5.5rem;
left: 3.5rem;
border-right: none;
border-bottom: none;
}
.corner-ornament.tr {
top: 5.5rem;
right: 3.5rem;
border-left: none;
border-bottom: none;
}
.corner-ornament.bl {
bottom: 3.5rem;
left: 3.5rem;
border-right: none;
border-top: none;
}
.corner-ornament.br {
bottom: 3.5rem;
right: 3.5rem;
border-left: none;
border-top: none;
}

/* Scroll indicator */
.scroll-hint {
position: absolute;
bottom: 6rem;
left: 50%;
transform: translateX(-50%);
color: var(--gold-highlight);
font-size: 0.65rem;
letter-spacing: 0.4em;
text-transform: uppercase;
opacity: 0;
animation:
    fadeIn 1s ease 1.8s forwards,
    bounce 2.5s infinite 2.5s;
}

@keyframes fadeUp {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes fadeIn {
to {
    opacity: 0.7;
}
}
@keyframes bounce {
0%,
100% {
    transform: translateX(-50%) translateY(0);
}
50% {
    transform: translateX(-50%) translateY(8px);
}
}

/* ============ SECTIONS GENERIC ============ */
section {
padding: 8rem 2rem;
position: relative;
}

.container {
max-width: 1280px;
margin: 0 auto;
}

.section-eyebrow {
color: var(--antique-gold);
font-size: 0.72rem;
letter-spacing: 0.5em;
text-transform: uppercase;
margin-bottom: 1.5rem;
font-weight: 500;
}
.section-eyebrow::before {
content: '';
display: inline-block;
width: 30px;
height: 1px;
background: var(--gold);
vertical-align: middle;
margin-right: 1rem;
}

.section-title {
font-family: 'Cinzel', serif;
color: var(--deep-purple);
font-size: clamp(2rem, 4vw, 3.2rem);
font-weight: 500;
letter-spacing: 0.05em;
line-height: 1.15;
margin-bottom: 1.5rem;
}

.section-lead {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(1.2rem, 1.8vw, 1.5rem);
color: var(--royal-purple);
line-height: 1.5;
font-weight: 300;
max-width: 720px;
}

/* Reveal on scroll */
.reveal {
opacity: 0;
transform: translateY(40px);
transition:
    opacity 1s ease,
    transform 1s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}

/* ============ ABOUT ============ */
#about {
background: var(--ivory);
overflow: hidden;
}
#about::before {
content: '';
position: absolute;
top: 0;
right: -150px;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(199, 162, 75, 0.06) 0%, transparent 70%);
pointer-events: none;
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
align-items: center;
}
.about-visual {
position: relative;
aspect-ratio: 4/5;
background: linear-gradient(135deg, var(--deep-purple) 0%, var(--royal-purple) 100%);
overflow: hidden;
}
.about-visual::before {
content: '';
position: absolute;
inset: 1.5rem;
border: 1px solid var(--gold);
}
.about-visual-inner{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-visual-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.crown-large {
width: 140px;
height: 140px;
margin-bottom: 2rem;
}
.about-visual-text {
font-family: 'Cormorant Garamond', serif;
color: var(--gold-soft);
font-style: italic;
font-size: 1.6rem;
line-height: 1.4;
font-weight: 300;
}
.about-visual-text strong {
font-family: 'Cinzel', serif;
font-style: normal;
color: var(--gold-highlight);
display: block;
font-size: 0.85rem;
letter-spacing: 0.4em;
margin-top: 1.5rem;
font-weight: 500;
}

.about-text p {
color: var(--royal-purple);
margin-bottom: 1.5rem;
font-size: 1rem;
line-height: 1.8;
}

.about-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 3rem;
padding-top: 2.5rem;
border-top: 1px solid rgba(199, 162, 75, 0.3);
}
.stat-num {
font-family: 'Cinzel', serif;
color: var(--antique-gold);
font-size: 2rem;
font-weight: 500;
margin-bottom: 0.3rem;
}
.stat-label {
font-size: 0.7rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--royal-purple);
}

/* ============ SERVICES ============ */
#services {
background-image: url("./Images/salon-inspiration.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;   
color: var(--ivory);
position: relative;
overflow: hidden;
}
#services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8); /* Adjust opacity */
}
#services .section-eyebrow {
color: var(--gold-highlight);
}
#services .section-title {
color: var(--ivory);
}
#services .section-lead {
color: var(--ivory);
opacity: 0.85;
}

.services-header {
text-align: center;
margin-bottom: 5rem;
position: relative;
z-index: 2;
}
.services-header .section-lead {
margin: 1.5rem auto 0;
}

.services-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
position: relative;
z-index: 2;
}
.service-card {
background: rgba(247, 244, 240, 0.03);
border: 1px solid rgba(199, 162, 75, 0.25);
padding: 3rem 2.5rem;
transition: all 0.5s ease;
position: relative;
overflow: hidden;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, var(--gold), transparent);
transform: translateX(-100%);
transition: transform 0.6s ease;
}
.service-card:hover {
background: rgba(199, 162, 75, 0.06);
border-color: var(--gold);
transform: translateY(-6px);
}
.service-card:hover::before {
transform: translateX(0);
}

.service-icon {
width: 56px;
height: 56px;
margin-bottom: 1.5rem;
color: var(--gold-highlight);
}
.service-name {
font-family: 'Cinzel', serif;
font-size: 1.2rem;
letter-spacing: 0.12em;
color: var(--ivory);
margin-bottom: 1rem;
font-weight: 500;
}
.service-desc {
color: var(--ivory);
opacity: 0.75;
font-size: 0.92rem;
line-height: 1.7;
margin-bottom: 1.5rem;
}
.service-link {
color: var(--gold-highlight);
text-decoration: none;
font-size: 0.72rem;
letter-spacing: 0.3em;
text-transform: uppercase;
transition: letter-spacing 0.3s;
}
.service-link:hover {
letter-spacing: 0.4em;
color: var(--gold-soft);
}
.service-link::after {
content: '→';
margin-left: 0.5rem;
transition: margin-left 0.3s;
}
.service-link:hover::after {
margin-left: 0.9rem;
}

/* ============ APPROACH ============ */
#approach {
background: var(--ivory-warm);
text-align: center;
}
.approach-header {
margin-bottom: 5rem;
}
.approach-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0;
border-top: 1px solid rgba(199, 162, 75, 0.4);
border-bottom: 1px solid rgba(199, 162, 75, 0.4);
}
.approach-pillar {
padding: 3.5rem 2rem;
border-right: 1px solid rgba(199, 162, 75, 0.4);
transition: background 0.4s;
}
.approach-pillar:last-child {
border-right: none;
}
.approach-pillar:hover {
background: rgba(199, 162, 75, 0.05);
}
.pillar-num {
font-family: 'Cinzel', serif;
color: var(--gold);
font-size: 0.8rem;
letter-spacing: 0.3em;
margin-bottom: 1.5rem;
}
.pillar-title {
font-family: 'Cinzel', serif;
color: var(--deep-purple);
font-size: 1.3rem;
letter-spacing: 0.1em;
margin-bottom: 1.2rem;
font-weight: 500;
}
.pillar-desc {
color: var(--royal-purple);
font-size: 0.9rem;
line-height: 1.7;
max-width: 280px;
margin: 0 auto;
}

/* ============ TRANSFORMATIONS ============ */
#transformations {
background: linear-gradient(180deg, var(--deeper-purple) 0%, var(--deep-purple) 100%);
color: var(--ivory);
overflow: hidden;
}
#transformations .section-eyebrow {
color: var(--gold-highlight);
}
#transformations .section-title {
color: var(--ivory);
}
.transformations-header {
text-align: center;
margin-bottom: 5rem;
}
.transformations-header .section-lead {
color: var(--ivory);
opacity: 0.85;
margin: 1.5rem auto 0;
}

.transform-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2.5rem;
}
.transform-card {
text-align: center;
transition: transform 0.5s;
}
.transform-card:hover {
transform: translateY(-8px);
}

.transform-frame {
position: relative;
background: linear-gradient(135deg, var(--royal-purple) 0%, var(--deeper-purple) 100%);
margin-bottom: 1.8rem;
overflow: hidden;
border: 1px solid rgba(199, 162, 75, 0.3);
}
.transform-frame::after {
content: '';
position: absolute;
inset: 0.6rem;
border: 1px solid rgba(199, 162, 75, 0.4);
pointer-events: none;
}
.transform-split {
align-items: stretch;
}
.transform-image{
    width: 100%;
}
.transform-label {
position: absolute;
top: 1rem;
font-family: 'Cinzel', serif;
font-size: 0.65rem;
letter-spacing: 0.3em;
color: var(--gold-highlight);
}
.transform-portrait {
width: 100%;
height: 100%;
display: flex;
align-items: flex-end;
justify-content: center;
padding-top: 2.5rem;
}
.silhouette {
width: 70%;
height: 75%;
background: linear-gradient(180deg, rgba(216, 185, 104, 0.18) 0%, rgba(216, 185, 104, 0.08) 60%, transparent 100%);
border-radius: 50% 50% 8% 8% / 60% 60% 5% 5%;
position: relative;
}
.silhouette::before {
content: '';
position: absolute;
top: -8%;
left: 50%;
width: 55%;
aspect-ratio: 1;
background: linear-gradient(180deg, rgba(216, 185, 104, 0.3) 0%, rgba(216, 185, 104, 0.1) 100%);
border-radius: 50%;
transform: translateX(-50%);
}
.silhouette.styled::before {
background: linear-gradient(180deg, var(--deeper-purple) 0%, var(--deeper-purple) 35%, rgba(216, 185, 104, 0.3) 35%, rgba(216, 185, 104, 0.1) 100%);
}
.silhouette.styled::after {
content: '';
position: absolute;
top: -12%;
left: 50%;
width: 70%;
height: 35%;
background: linear-gradient(135deg, var(--deeper-purple), var(--royal-purple));
border-radius: 50% 50% 30% 30% / 70% 70% 25% 25%;
transform: translateX(-50%);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.transform-divider {
width: 40px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.transform-arrow {
width: 36px;
height: 36px;
background: var(--gold);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--deep-purple);
font-size: 1rem;
z-index: 2;
box-shadow: 0 4px 16px rgba(199, 162, 75, 0.4);
}

.transform-quote {
font-family: 'Cormorant Garamond', serif;
font-style: italic;
font-size: 1.15rem;
color: var(--ivory);
line-height: 1.4;
font-weight: 300;
padding: 0 1rem;
}
.transform-quote strong {
font-family: 'Cinzel', serif;
font-style: normal;
display: block;
color: var(--gold-highlight);
font-size: 0.9rem;
letter-spacing: 0.2em;
margin-top: 0.6rem;
font-weight: 500;
}
.transform-heart {
margin-top: 0.8rem;
color: var(--gold);
font-size: 0.9rem;
}

/* ============ FOUNDER ============ */
#founder {
background: var(--ivory);
overflow: hidden;
}
.founder-grid {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 5rem;
align-items: center;
}
.founder-visual {
position: relative;
aspect-ratio: 4/5;
background: linear-gradient(135deg, var(--royal-purple) 0%, var(--deeper-purple) 100%);
overflow: hidden;
}
.founder-visual::before {
content: '';
position: absolute;
inset: 1.2rem;
border: 1px solid var(--gold);
z-index: 2;
pointer-events: none;
}
.founder-portrait {
position: absolute;
inset: 0;
display: flex;
align-items: flex-end;
justify-content: center;
}
.founder-silhouette {
width: 80%;
height: 88%;
background: linear-gradient(180deg, rgba(216, 185, 104, 0.22) 0%, rgba(216, 185, 104, 0.1) 50%, transparent 100%);
border-radius: 50% 50% 4% 4% / 55% 55% 2% 2%;
position: relative;
margin-bottom: 0;
}
.founder-silhouette::before {
content: '';
position: absolute;
top: -3%;
left: 50%;
width: 45%;
aspect-ratio: 0.9;
background: linear-gradient(180deg, var(--deeper-purple) 0%, var(--deeper-purple) 25%, rgba(216, 185, 104, 0.35) 25%, rgba(216, 185, 104, 0.15) 100%);
border-radius: 50% 50% 45% 45%;
transform: translateX(-50%);
}
.founder-silhouette::after {
content: '';
position: absolute;
top: -8%;
left: 50%;
width: 65%;
height: 60%;
background: linear-gradient(135deg, #1a0c2e, #2a1542);
border-radius: 50% 50% 20% 20% / 60% 60% 8% 8%;
transform: translateX(-50%);
}
.founder-badge {
position: absolute;
bottom: 2.5rem;
left: 50%;
transform: translateX(-50%);
background: rgba(26, 14, 46, 0.92);
backdrop-filter: blur(10px);
padding: 0.8rem 2rem;
border: 1px solid var(--gold);
z-index: 3;
}
.founder-badge-text {
font-family: 'Cinzel', serif;
color: var(--gold-highlight);
font-size: 0.7rem;
letter-spacing: 0.3em;
text-align: center;
}

.founder-text h2 {
margin-bottom: 0.5rem;
}
.founder-name {
font-family: 'Cormorant Garamond', serif;
font-style: italic;
color: var(--antique-gold);
font-size: 2rem;
margin-bottom: 2rem;
font-weight: 400;
}
.founder-text p {
color: var(--royal-purple);
margin-bottom: 1.3rem;
font-size: 0.98rem;
line-height: 1.85;
}
.founder-quote {
margin: 2.5rem 0;
padding-left: 2rem;
border-left: 2px solid var(--gold);
font-family: 'Cormorant Garamond', serif;
font-style: italic;
color: var(--deep-purple);
font-size: 1.4rem;
line-height: 1.4;
font-weight: 300;
}

.founder-signature {
margin-top: 2rem;
font-family: 'Cormorant Garamond', serif;
font-style: italic;
color: var(--antique-gold);
font-size: 1.8rem;
}

/* ============ TESTIMONIAL ============ */
#testimonial {
background: linear-gradient(rgba(26, 14, 46, 0.94), rgba(26, 14, 46, 0.94)), radial-gradient(circle at 50% 50%, var(--royal-purple), var(--deeper-purple));
color: var(--ivory);
text-align: center;
padding: 7rem 2rem;
}
.testimonial-mark {
font-family: 'Cinzel', serif;
color: var(--gold);
font-size: 5rem;
line-height: 0.5;
margin-bottom: 2rem;
opacity: 0.6;
}
.testimonial-text {
font-family: 'Cormorant Garamond', serif;
font-style: italic;
font-size: clamp(1.4rem, 2.5vw, 2rem);
line-height: 1.5;
max-width: 900px;
margin: 0 auto 2.5rem;
color: var(--ivory);
font-weight: 300;
}
.testimonial-author {
font-family: 'Cinzel', serif;
color: var(--gold-highlight);
font-size: 0.85rem;
letter-spacing: 0.4em;
text-transform: uppercase;
}
.testimonial-author::before {
content: '';
display: inline-block;
width: 30px;
height: 1px;
background: var(--gold);
vertical-align: middle;
margin-right: 1rem;
}
.testimonial-author::after {
content: '';
display: inline-block;
width: 30px;
height: 1px;
background: var(--gold);
vertical-align: middle;
margin-left: 1rem;
}

/* ============ CONTACT ============ */
#contact {
background: var(--ivory);
overflow: hidden;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
}
.contact-info h2 {
margin-bottom: 1.5rem;
}
.contact-info .section-lead {
margin-bottom: 3rem;
}

.contact-item {
display: flex;
align-items: center;
gap: 1.5rem;
padding: 1.5rem 0;
border-bottom: 1px solid rgba(199, 162, 75, 0.25);
}
.contact-item:last-child {
border-bottom: none;
}
.contact-icon {
width: 48px;
height: 48px;
border: 1px solid var(--gold);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--antique-gold);
flex-shrink: 0;
}
.contact-label {
font-size: 0.7rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--antique-gold);
margin-bottom: 0.3rem;
}
.contact-value {
color: var(--deep-purple);
text-decoration: none;
font-size: 1.05rem;
transition: color 0.3s;
}
.contact-value:hover {
color: var(--gold);
}

.contact-form {
background: linear-gradient(135deg, var(--deep-purple) 0%, var(--deeper-purple) 100%);
padding: 3.5rem;
position: relative;
overflow: hidden;
}
.contact-form::before {
content: '';
position: absolute;
inset: 1rem;
border: 1px solid rgba(199, 162, 75, 0.25);
pointer-events: none;
}
.contact-form h3 {
font-family: 'Cinzel', serif;
color: var(--gold-highlight);
font-size: 1.4rem;
letter-spacing: 0.1em;
margin-bottom: 0.8rem;
font-weight: 500;
}
.contact-form .form-sub {
color: var(--ivory);
opacity: 0.8;
font-family: 'Cormorant Garamond', serif;
font-style: italic;
font-size: 1.1rem;
margin-bottom: 2.5rem;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
color: var(--gold-highlight);
font-size: 0.7rem;
letter-spacing: 0.25em;
text-transform: uppercase;
margin-bottom: 0.6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
background: transparent;
border: none;
border-bottom: 1px solid rgba(199, 162, 75, 0.4);
color: var(--ivory);
padding: 0.8rem 0;
font-family: 'Montserrat', sans-serif;
font-size: 0.95rem;
transition: border-color 0.3s;
outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
border-color: var(--gold);
}
.form-group select option {
background: var(--deeper-purple);
color: var(--ivory);
}
.form-group textarea {
resize: vertical;
min-height: 80px;
}
.form-submit {
width: 100%;
margin-top: 1.5rem;
background: linear-gradient(135deg, var(--gold) 0%, var(--gold-highlight) 100%);
color: var(--deep-purple);
padding: 1.1rem;
border: none;
font-family: 'Montserrat', sans-serif;
font-size: 0.78rem;
letter-spacing: 0.3em;
text-transform: uppercase;
font-weight: 500;
cursor: pointer;
transition: all 0.4s;
}
.form-submit:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(199, 162, 75, 0.4);
}
.form-success {
display: none;
text-align: center;
color: var(--gold-highlight);
padding: 1rem;
border: 1px solid var(--gold);
margin-top: 1rem;
font-family: 'Cormorant Garamond', serif;
font-style: italic;
font-size: 1.1rem;
}

/* ============ FOOTER ============ */
footer {
background: var(--deeper-purple);
color: var(--ivory);
padding: 5rem 2rem 2rem;
position: relative;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 4rem;
margin-bottom: 4rem;
}
.footer-brand .footer-logo {
font-family: 'Cinzel', serif;
font-size: 1.3rem;
letter-spacing: 0.15em;
color: var(--gold-highlight);
margin-bottom: 0.5rem;
}
.footer-brand .footer-wellness {
font-family: 'Cinzel', serif;
font-size: 0.85rem;
letter-spacing: 0.4em;
color: var(--ivory);
margin-bottom: 1.5rem;
}
.footer-brand p {
color: var(--ivory);
opacity: 0.7;
font-size: 0.9rem;
line-height: 1.7;
margin-bottom: 1.5rem;
max-width: 320px;
}
.footer-tag {
font-family: 'Cinzel', serif;
color: var(--gold);
font-size: 0.75rem;
letter-spacing: 0.4em;
}

.footer-col h4 {
font-family: 'Cinzel', serif;
color: var(--gold-highlight);
font-size: 0.8rem;
letter-spacing: 0.25em;
text-transform: uppercase;
margin-bottom: 1.5rem;
font-weight: 500;
}
.footer-col ul {
list-style: none;
}
.footer-col li {
margin-bottom: 0.8rem;
}
.footer-col a {
color: var(--ivory);
opacity: 0.7;
text-decoration: none;
font-size: 0.9rem;
transition: all 0.3s;
}
.footer-col a:hover {
opacity: 1;
color: var(--gold-highlight);
}

.footer-bottom {
padding-top: 2rem;
border-top: 1px solid rgba(199, 162, 75, 0.2);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.footer-copy {
color: var(--ivory);
opacity: 0.5;
font-size: 0.78rem;
letter-spacing: 0.05em;
}
.footer-social {
display: flex;
gap: 1rem;
}
.footer-social a {
width: 38px;
height: 38px;
border: 1px solid rgba(199, 162, 75, 0.3);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--gold-highlight);
transition: all 0.3s;
text-decoration: none;
}
.footer-social a:hover {
background: var(--gold);
color: var(--deep-purple);
border-color: var(--gold);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
nav {
    padding: 1rem 1.5rem;
}
nav.scrolled {
    padding: 0.8rem 1.5rem;
}
.nav-links {
    display: none;
}
.nav-links.open {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26, 14, 46, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2.5rem;
    gap: 2rem;
    border-bottom: 1px solid rgba(199, 162, 75, 0.3);
}
.nav-links a{
    color: var(--ivory);
}
.menu-toggle {
    display: block;
}
.nav-cta {
    display: none;
}

.hero {
    padding: 7rem 1.5rem 4rem;
}
.hero::after {
    top: 4rem;
    left: 1rem;
    right: 1rem;
    bottom: 2rem;
}
.corner-ornament {
    width: 40px;
    height: 40px;
}
.corner-ornament.tl,
.corner-ornament.tr {
    top: 4.5rem;
}
.corner-ornament.tl,
.corner-ornament.bl {
    left: 1.5rem;
}
.corner-ornament.tr,
.corner-ornament.br {
    right: 1.5rem;
}
.corner-ornament.bl,
.corner-ornament.br {
    bottom: 2.5rem;
}
.scroll-hint {
    bottom: 3.5rem;
}

section {
    padding: 5rem 1.5rem;
}

.about-grid,
.founder-grid,
.contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
}
.services-grid {
    grid-template-columns: 1fr;
}
.approach-grid {
    grid-template-columns: 1fr;
}
.approach-pillar {
    border-right: none;
    border-bottom: 1px solid rgba(199, 162, 75, 0.4);
}
.approach-pillar:last-child {
    border-bottom: none;
}
.transform-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}
.about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form {
    padding: 2rem;
}
.footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
.footer-bottom {
    flex-direction: column;
    text-align: center;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    width: 20px;
    margin: 0 0.8rem;
}
.hero-wellness::before,
.hero-wellness::after {
    display: none;
}
}

@media (max-width: 480px) {
.hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
}
.hero-tagline .dot {
    margin: 0 0.3rem;
}
.hero-buttons {
    flex-direction: column;
    width: 100%;
}
.btn-primary,
.btn-secondary {
    width: 100%;
    text-align: center;
}
}