/* === RAMSTOUCH BEAUTY — PREMIUM STYLE v2.0 === */

/* ────────────────────────────────────────
   1. VARIABLES & RESET
──────────────────────────────────────── */
:root {
  --maroon:       #3a0505;
  --maroon-light: #6b1010;
  --gold:         #c9a451;
  --gold-light:   #e4c47a;
  --cream:        #faf8f4;
  --white:        #ffffff;
  --dark:         #0d0808;
  --text:         #2d1e1e;
  --gray:         #7a7070;
  --border:       #ece4d8;
  --shadow-sm:    0 2px 15px rgba(0,0,0,0.07);
  --shadow-md:    0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);
  --transition:   0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:       8px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ────────────────────────────────────────
   2. TYPOGRAPHY
──────────────────────────────────────── */
.serif-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.15;
}
.section-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px;
}
.gold-line {
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px 0 28px;
}
.gold-line.centered { margin: 16px auto 28px; }
.body-text { font-size: 1rem; color: var(--gray); line-height: 1.85; }

/* ────────────────────────────────────────
   3. NAVIGATION
──────────────────────────────────────── */
.salon-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 6%; height: 80px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow 0.3s;
}
.salon-nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.logo-container { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.main-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); letter-spacing: 2px; }
.sub-name { font-size: 7.5px; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text); transition: color 0.3s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-book-btn {
  background: var(--maroon) !important; color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 30px !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-book-btn:hover { background: var(--gold) !important; color: var(--dark) !important; transform: translateY(-1px); }
.nav-book-btn::after { display: none !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; z-index: 1100; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: var(--dark); z-index: 1050;
  padding: 100px 40px 50px;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu .book-link {
  color: var(--gold) !important; margin-top: 22px;
  border: 1px solid var(--gold); padding: 15px 20px !important;
  text-align: center; border-radius: 4px;
}
.menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 1040; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }

/* ────────────────────────────────────────
   4. HERO SECTIONS
──────────────────────────────────────── */
.hero-salon {
  height: 100vh; min-height: 600px;
  position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
  background: url('hero.jpg') no-repeat center center / cover;
}
.hero-salon::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,0,0,0.72) 0%, rgba(58,5,5,0.6) 50%, rgba(10,0,0,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }
.hero-content .section-tag { animation: fadeUp 0.8s 0.2s both; }
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600; color: var(--white); line-height: 1.05;
  margin-bottom: 20px; animation: fadeUp 0.8s 0.4s both;
}
.luxury-italic { font-style: italic; color: var(--gold); }
.hero-content > p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78); margin-bottom: 42px;
  font-weight: 300; letter-spacing: 0.5px;
  animation: fadeUp 0.8s 0.6s both;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s 0.8s both; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  animation: fadeUp 0.8s 1s both; z-index: 2;
}
.hero-scroll i { animation: bounce 2s infinite; }

/* Small hero for inner pages */
.hero-small {
  height: 50vh; min-height: 300px;
  position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
  color: white;
  background: linear-gradient(rgba(10,0,0,0.68), rgba(58,5,5,0.6)), url('hero.jpg') no-repeat center center / cover;
}
.hero-small h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 600; line-height: 1.1;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-small > div > p {
  font-size: 11px; color: rgba(255,255,255,0.65); letter-spacing: 3px;
  text-transform: uppercase; margin-top: 10px; animation: fadeUp 0.8s 0.4s both;
}

/* ────────────────────────────────────────
   5. BUTTONS
──────────────────────────────────────── */
.btn-primary {
  display: inline-block; padding: 14px 36px;
  background: var(--gold); color: var(--dark);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 30px; border: none; cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,164,81,0.4); }

.btn-outline {
  display: inline-block; padding: 13px 34px;
  background: transparent; color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 30px; border: 1.5px solid rgba(255,255,255,0.55);
  transition: background 0.3s, border-color 0.3s, transform 0.2s; cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }

.btn-dark {
  display: inline-block; padding: 13px 30px;
  background: var(--maroon); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 30px; border: none; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-dark:hover { background: var(--maroon-light); transform: translateY(-2px); }

/* ────────────────────────────────────────
   6. SECTION HELPERS
──────────────────────────────────────── */
.section-pad { padding: 100px 8%; }
.section-pad-sm { padding: 70px 8%; }
.section-header { text-align: center; max-width: 660px; margin: 0 auto 70px; }

/* ────────────────────────────────────────
   7. STATS SECTION
──────────────────────────────────────── */
.stats-section { background: var(--dark); padding: 80px 8%; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1100px; margin: 0 auto; }
.stat-item { padding: 40px 30px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 600; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 10px; display: block; }

/* ────────────────────────────────────────
   8. SPLIT LAYOUT (2-COL)
──────────────────────────────────────── */
.split-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.split-layout.reverse .split-image { order: -1; }
.split-image { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; }
.split-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.split-image:hover img { transform: scale(1.04); }
.split-image::after {
  content: ''; position: absolute; bottom: -16px; right: -16px;
  width: 160px; height: 160px; border: 2px solid var(--gold);
  opacity: 0.25; border-radius: 4px; pointer-events: none;
}
.split-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 2.8rem); color: var(--maroon); line-height: 1.15; margin-bottom: 8px; }

/* ────────────────────────────────────────
   9. SERVICES PREVIEW (HOME 4-GRID)
──────────────────────────────────────── */
.services-preview { background: var(--cream); padding: 100px 8%; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.4s, box-shadow 0.4s;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 260px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 28px 24px; }
.service-card-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; color: var(--text); margin-bottom: 10px; margin-top: 6px; }
.service-card-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 22px; }

/* ────────────────────────────────────────
   10. TESTIMONIALS
──────────────────────────────────────── */
.testimonials-section {
  background: var(--maroon); padding: 100px 8%;
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 500px;
  color: rgba(255,255,255,0.025); position: absolute; top: -80px; left: 4%;
  line-height: 1; pointer-events: none;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1200px; margin: 0 auto; }
.testimonial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 40px 32px; transition: background 0.3s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 80px; color: var(--gold); line-height: 0.6; margin-bottom: 20px; display: block; opacity: 0.65; }
.testimonial-card p { font-size: 0.93rem; color: rgba(255,255,255,0.78); line-height: 1.82; font-style: italic; margin-bottom: 28px; }
.stars { color: var(--gold); font-size: 12px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar-initials {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--dark); flex-shrink: 0;
  border: 2px solid var(--gold);
}
.author-info span:first-child { display: block; font-weight: 600; color: var(--white); font-size: 0.9rem; }
.author-info span:last-child { font-size: 10px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }

/* ────────────────────────────────────────
   11. CTA BANNER
──────────────────────────────────────── */
.cta-banner {
  background: var(--white); padding: 100px 8%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: 'BEAUTY'; font-family: 'Cormorant Garamond', serif; font-size: 220px;
  color: rgba(58,5,5,0.035); position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); pointer-events: none; white-space: nowrap;
}
.cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--maroon); margin-bottom: 14px; }
.cta-banner p { font-size: 1rem; color: var(--gray); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ────────────────────────────────────────
   12. ABOUT PAGE
──────────────────────────────────────── */
.values-section { background: var(--cream); padding: 100px 8%; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.value-card {
  background: var(--white); border-radius: var(--radius);
  padding: 50px 36px; text-align: center;
  box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.value-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--maroon); margin-bottom: 12px; }
.value-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

.ceo-section { background: var(--white); padding: 100px 8%; }
.ceo-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto; }
.ceo-photo-wrap { position: relative; display: inline-block; }
.ceo-photo-inner { position: relative; display: inline-block; }
.ceo-photo { width: 100%; max-width: 340px; aspect-ratio: 3/4; object-fit: cover; object-position: top; border-radius: 4px; box-shadow: var(--shadow-lg); }
.ceo-frame { position: absolute; bottom: -18px; right: -18px; width: 150px; height: 150px; border: 2px solid var(--gold); border-radius: 4px; opacity: 0.3; pointer-events: none; }
.ceo-content { padding-top: 10px; }
.ceo-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 3rem); color: var(--maroon); margin-bottom: 4px; line-height: 1.1; }
.ceo-title-text { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 600; display: block; }

/* Why choose us strip */
.why-strip { background: var(--dark); padding: 80px 8%; }
.why-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1100px; margin: 0 auto; text-align: center; }
.why-item i { font-size: 1.8rem; color: var(--gold); margin-bottom: 16px; display: block; }
.why-item h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.why-item p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ────────────────────────────────────────
   13. SERVICES PAGE
──────────────────────────────────────── */
.services-full { padding: 100px 8%; background: var(--white); }
.services-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.service-full-card {
  display: grid; grid-template-columns: 200px 1fr;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.service-full-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.sfc-img { overflow: hidden; }
.sfc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.service-full-card:hover .sfc-img img { transform: scale(1.06); }
.sfc-content { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
.sfc-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; color: var(--maroon); margin-bottom: 10px; }
.sfc-content p { font-size: 0.88rem; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
.sfc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--maroon); border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  transition: color 0.3s, gap 0.3s; width: fit-content;
}
.sfc-link:hover { color: var(--gold); gap: 10px; }

/* Process Steps */
.process-section { background: var(--cream); padding: 100px 8%; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1100px; margin: 0 auto; }
.process-step { text-align: center; padding: 20px; }
.step-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--gold);
  margin: 0 auto 20px;
}
.process-step h4 { font-weight: 600; font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* FAQ */
.faq-section { background: var(--white); padding: 100px 8%; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer; font-weight: 600; font-size: 1rem;
  color: var(--text); transition: color 0.3s; user-select: none;
}
.faq-question:hover { color: var(--maroon); }
.faq-question i { color: var(--gold); transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { font-size: 0.93rem; color: var(--gray); line-height: 1.8; padding-bottom: 24px; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ────────────────────────────────────────
   14. GALLERY PAGE
──────────────────────────────────────── */
.gallery-section { padding: 100px 8%; background: var(--white); }
.gallery-filter-bar { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.filter-btn {
  padding: 10px 24px; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--gray); border-radius: 30px; cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active { background: var(--maroon); color: var(--white); border-color: var(--maroon); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; max-width: 1200px; margin: 0 auto;
}
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; cursor: pointer;
  transition: opacity 0.35s, transform 0.35s;
}
.gallery-item.hidden { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(58,5,5,0.85) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s; display: flex; align-items: flex-end; padding: 28px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--white); }
.gallery-item-overlay span { font-size: 10px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-bottom: 4px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 24px; right: 30px;
  color: white; font-size: 36px; cursor: pointer; line-height: 1; transition: color 0.3s;
}
.lightbox-close:hover { color: var(--gold); }

/* ────────────────────────────────────────
   15. CONTACT PAGE
──────────────────────────────────────── */
.contact-section { padding: 100px 8%; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; max-width: 1100px; margin: 0 auto; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--maroon); margin-bottom: 8px; }
.contact-info > p { font-size: 0.93rem; color: var(--gray); margin-bottom: 36px; line-height: 1.7; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-item .ci-icon {
  width: 44px; height: 44px; background: rgba(58,5,5,0.06); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--maroon); flex-shrink: 0; font-size: 15px;
}
.contact-info-item h4 { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.contact-info-item p, .contact-info-item a { font-size: 0.92rem; color: var(--text); font-weight: 500; }
.contact-info-item a:hover { color: var(--gold); }
.contact-form-card { background: var(--cream); border-radius: var(--radius); padding: 48px 44px; }
.contact-form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--maroon); margin-bottom: 6px; }
.contact-form-card > p { font-size: 0.9rem; color: var(--gray); margin-bottom: 32px; }

.map-section { background: var(--cream); padding: 0 8% 100px; }
.map-embed { max-width: 1100px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ────────────────────────────────────────
   16. FORMS
──────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 13px 16px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: 'Jost', sans-serif; font-size: 0.92rem;
  color: var(--text); outline: none; transition: border-color 0.3s; appearance: none;
}
.form-input:focus { border-color: var(--gold); }
textarea.form-input { height: 130px; resize: none; }
select.form-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23999' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.success-banner {
  display: none; background: rgba(40,167,69,0.1);
  border: 1px solid rgba(40,167,69,0.3); color: #155724;
  padding: 14px 20px; border-radius: var(--radius);
  margin-bottom: 20px; font-size: 0.9rem; font-weight: 600;
}

/* ────────────────────────────────────────
   17. BOOKING PAGE
──────────────────────────────────────── */
.booking-section { padding: 100px 8%; background: var(--cream); }
.booking-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 60px; max-width: 1100px; margin: 0 auto; }
.booking-info-col { padding-top: 10px; }
.booking-info-col h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 2.8rem); color: var(--maroon); margin-bottom: 12px; line-height: 1.15; }
.booking-info-col > p { font-size: 0.93rem; color: var(--gray); line-height: 1.7; margin-bottom: 36px; }
.booking-perks { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.perk-item { display: flex; gap: 14px; align-items: flex-start; }
.perk-icon { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.perk-item h4 { font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.perk-item p { font-size: 0.83rem; color: var(--gray); }
.booking-form-card { background: var(--white); border-radius: 12px; padding: 50px 46px; box-shadow: var(--shadow-md); }
.booking-form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--maroon); margin-bottom: 6px; }
.booking-form-card > p { font-size: 0.9rem; color: var(--gray); margin-bottom: 32px; }

/* ────────────────────────────────────────
   18. SUCCESS PAGE
──────────────────────────────────────── */
.success-page {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 40px;
  background: var(--cream);
}
.success-card { max-width: 560px; background: var(--white); border-radius: 12px; padding: 70px 60px; box-shadow: var(--shadow-lg); }
.success-icon {
  width: 80px; height: 80px; background: rgba(58,5,5,0.06);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; font-size: 2rem; color: var(--gold);
}
.success-card h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--maroon); margin-bottom: 14px; }
.success-card p { font-size: 0.97rem; color: var(--gray); line-height: 1.7; margin-bottom: 36px; }

/* ────────────────────────────────────────
   19. FOOTER
──────────────────────────────────────── */
.main-footer { background: var(--dark); color: var(--white); padding: 90px 8% 36px; }
.footer-container { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; max-width: 1200px; margin: 0 auto 60px; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; display: block; }
.footer-tagline { font-size: 0.87rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 28px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 15px; transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.social-icons a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer-col h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; font-weight: 600; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.45); transition: color 0.3s, padding-left 0.3s; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item i { color: var(--gold); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  max-width: 1200px; margin: 0 auto; font-size: 11px; color: rgba(255,255,255,0.28);
}

/* ────────────────────────────────────────
   20. FLOATING WHATSAPP
──────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 26px; z-index: 998;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.35); animation: pulse-ring 2.2s infinite;
}

/* ────────────────────────────────────────
   21. SCROLL ANIMATIONS
──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-45px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(45px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* ────────────────────────────────────────
   22. KEYFRAMES
──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ────────────────────────────────────────
   23. RESPONSIVE
──────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:last-child { border-bottom: none; }
  .why-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .split-layout.reverse .split-image { order: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: 1fr; }
  .sfc-img { height: 220px; }
  .ceo-layout { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .ceo-photo-wrap { display: flex; justify-content: center; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 70px 6%; }
  .section-pad-sm { padding: 50px 6%; }
  .hero-btns { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-card { padding: 36px 28px; }
  .contact-form-card { padding: 36px 28px; }
  .success-card { padding: 50px 28px; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .why-strip-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .salon-nav { padding: 0 5%; height: 70px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .main-name { font-size: 17px; }
  .sub-name { font-size: 6.5px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .why-strip-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero-small { background-attachment: scroll; }
}
