/* ========================================
   Little Red Esthetics - Stylesheet
   Palette: Burgundy + Warm Off-White + Gold
   ======================================== */

/* --- Custom Properties --- */
:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5C1E2B;
  --burgundy-light: #A64D5B;
  --burgundy-muted: #9E6B73;
  --cream: #FBF7F4;
  --cream-dark: #F0E8E2;
  --gold: #C9A96E;
  --gold-light: #DFC9A0;
  --charcoal: #2C2024;
  --charcoal-light: #5A4A4E;
  --rose: #E8D5D5;
  --rose-light: #F3EBEB;
  --white: #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(44, 32, 36, 0.06);
  --shadow-md: 0 4px 16px rgba(44, 32, 36, 0.1);
  --shadow-lg: 0 8px 32px rgba(44, 32, 36, 0.12);

  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--burgundy-dark);
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  font-size: 1rem;
  color: var(--charcoal-light);
  max-width: 65ch;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  max-width: 550px;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--burgundy-dark);
  transform: translateY(-2px);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(251, 247, 244, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-sm);
}

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

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--burgundy);
}

.navbar.scrolled .nav-brand {
  color: var(--burgundy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: width var(--transition);
}

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

.nav-links .btn {
  padding: 0.6rem 1.6rem;
  font-size: 0.75rem;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-ornament::before,
.section-ornament::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-ornament span {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-light) 40%, var(--cream-dark) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 45, 59, 0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.07) 0%, transparent 70%);
  pointer-events: none;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 15px); }
}

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

.hero-content {
  padding: 2rem 0;
}

.hero-content .section-label {
  margin-bottom: 1rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.hero-content h1 span {
  color: var(--burgundy);
  font-style: italic;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
  background: linear-gradient(145deg, var(--rose) 0%, var(--burgundy-muted) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: morph 8s ease-in-out infinite;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold), var(--burgundy-light), var(--gold-light));
  z-index: -1;
  opacity: 0.6;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

@keyframes morph {
  0%, 100% { border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%; }
  25% { border-radius: 50% 60% 40% 50% / 40% 50% 60% 50%; }
  50% { border-radius: 40% 50% 60% 50% / 50% 40% 50% 60%; }
  75% { border-radius: 50% 40% 50% 60% / 60% 50% 40% 50%; }
}

.hero-image-caption {
  text-align: center;
  margin-top: 1rem;
}

.hero-image-caption strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
}

.hero-image-caption span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--burgundy-muted);
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  text-align: center;
  padding: 2rem;
  background: linear-gradient(145deg, var(--burgundy-muted) 0%, var(--burgundy) 100%);
}

/* ========================================
   SERVICES PREVIEW
   ======================================== */
.services-preview {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-light), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  position: relative;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy));
  transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon .icon-svg {
  stroke: var(--white);
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-card .service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.5px;
}

.service-card .service-link:hover {
  color: var(--burgundy-dark);
}

/* ========================================
   ABOUT PREVIEW
   ======================================== */
.about-preview {
  background: var(--cream);
}

.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--rose) 0%, var(--cream-dark) 100%);
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(0.92);
}

.about-content .section-label {
  margin-bottom: 0.75rem;
}

.about-content h2 {
  margin-bottom: 1.25rem;
}

.about-content p {
  margin-bottom: 1.25rem;
}

.about-credentials {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}

.credential-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  background: var(--burgundy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08), transparent 70%);
  pointer-events: none;
  animation: float 18s ease-in-out infinite;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 70%);
  pointer-events: none;
  animation: float 22s ease-in-out infinite reverse;
}

.testimonials .section-label {
  color: var(--gold-light);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-card blockquote::before {
  content: '\201C';
  position: absolute;
  left: -0.25rem;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.5;
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--burgundy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.testimonial-detail {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   GALLERY PREVIEW
   ======================================== */
.gallery-preview {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  background: var(--cream-dark);
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.gallery-item:hover {
  transform: scale(1.03) rotate(0.5deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 32, 36, 0.7), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--charcoal-light);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--rose-light) 100%);
}

.gallery-placeholder-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--rose-light) 50%, var(--cream) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.15);
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer ul a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--burgundy);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ========================================
   INNER PAGE HERO
   ======================================== */
.page-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-light) 50%, var(--cream-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(123, 45, 59, 0.1);
  pointer-events: none;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.services-full {
  background: var(--white);
}

.service-category {
  margin-bottom: 4rem;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-category h2 {
  margin-bottom: 0.5rem;
}

.service-category > p {
  margin-bottom: 2rem;
}

.service-list {
  display: grid;
  gap: 1.5rem;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  gap: 2rem;
}

.service-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.service-item-content {
  flex: 1;
}

.service-item h3 {
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.95rem;
}

.service-item-meta {
  text-align: right;
  flex-shrink: 0;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 0.25rem;
}

.service-duration {
  font-size: 0.8rem;
  color: var(--charcoal-light);
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-full {
  background: var(--white);
}

.about-full .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--rose) 0%, var(--cream-dark) 100%);
  position: sticky;
  top: 8rem;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.25rem;
}

.credentials-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.credential-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

/* ========================================
   GALLERY PAGE
   ======================================== */
.gallery-full {
  background: var(--white);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--rose);
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-full-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-dark);
  transition: all var(--transition);
}

.gallery-full-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.gallery-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 2/1;
}

.gallery-comparison > div {
  position: relative;
  overflow: hidden;
}

.gallery-comparison img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-comparison-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(44, 32, 36, 0.75);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.gallery-item-info {
  padding: 1.25rem;
}

.gallery-item-info h4 {
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

.gallery-item-info p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-full {
  background: var(--white);
}

.contact-full .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1.25rem;
}

.contact-info > p {
  margin-bottom: 2rem;
}

.contact-details {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.contact-detail-text p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

.contact-detail-text a {
  color: var(--charcoal-light);
}

.contact-detail-text a:hover {
  color: var(--burgundy);
}

.contact-social {
  display: flex;
  gap: 0.75rem;
}

.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1rem;
  transition: all var(--transition);
}

.contact-social a:hover {
  background: var(--burgundy);
  color: var(--white);
}

.contact-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form-wrapper h3 {
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--rose);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ========================================
   FAQ PAGE
   ======================================== */
.faq-full {
  background: var(--white);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--burgundy);
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.active .faq-toggle {
  background: var(--burgundy);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 2rem 1.5rem;
}

.faq-answer-inner p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 0;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 220px;
    aspect-ratio: 1;
    animation: morph 10s ease-in-out infinite;
  }

  .hero-image-caption {
    text-align: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-preview .container,
  .about-full .container,
  .contact-full .container {
    grid-template-columns: 1fr;
  }

  .about-photo {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

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

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

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

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 32, 36, 0.4);
    z-index: 998;
  }

  .nav-overlay.active {
    display: block;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-item {
    flex-direction: column;
    gap: 1rem;
  }

  .service-item-meta {
    text-align: left;
  }

  .page-hero {
    padding: 8rem 0 3rem;
  }

  /* Testimonials mobile */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 1.75rem 1.5rem;
  }

  .testimonial-card blockquote {
    font-size: 1rem;
  }

  /* Gallery mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* About section mobile */
  .about-preview .container {
    gap: 2.5rem;
  }

  .about-image {
    max-width: 350px;
    margin: 0 auto;
  }

  .about-credentials {
    gap: 1rem;
  }

  /* Services cards mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.75rem 1.5rem;
  }

  /* Skin mapping mobile */
  .skin-mapping > .container {
    gap: 2rem;
  }
}

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

  h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    min-height: auto;
    padding: 5.5rem 0 2.5rem;
  }

  .hero .container {
    gap: 1.5rem;
  }

  .hero-content {
    padding: 0;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-image-wrapper {
    max-width: 180px;
  }

  .hero-image-caption strong {
    font-size: 0.95rem;
  }

  .hero-image-caption span {
    font-size: 0.6rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-trust {
    flex-direction: column;
    text-align: center;
    gap: 0.2rem;
    font-size: 0.75rem;
  }

  .nav-brand img {
    height: 70px;
  }

  .navbar.scrolled .nav-brand img {
    height: 55px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  .marquee-track span {
    font-size: 0.65rem;
    padding: 0 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .testimonial-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-preview .container {
    gap: 2rem;
  }

  .about-image {
    aspect-ratio: 1;
  }

  .about-credentials {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-section h2 {
    font-size: 1.4rem;
  }

  .google-rating {
    padding: 0.5rem 1rem;
    gap: 0.4rem;
  }

  .google-rating-text {
    font-size: 0.75rem;
  }

  .floating-cta {
    padding: 0.55rem 1rem;
    font-size: 0.65rem;
    bottom: 0.75rem;
    right: 0.75rem;
    letter-spacing: 1px;
  }

  .sparkle {
    display: none;
  }

  .skin-mapping-features li {
    font-size: 0.85rem;
  }

  .face-map {
    max-width: 220px;
  }

  .face-tooltip {
    width: 160px;
    padding: 0.8rem;
  }

  .footer-brand {
    font-size: 1.2rem;
  }

  .footer-desc {
    font-size: 0.8rem;
  }

  /* Testimonials small mobile */
  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }

  .testimonial-card blockquote {
    font-size: 0.95rem;
    padding-left: 1rem;
  }

  .testimonial-card blockquote::before {
    font-size: 2rem;
  }

  .testimonial-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  /* About small mobile */
  .about-image {
    max-width: 280px;
    aspect-ratio: 1;
  }

  .about-content h2 {
    font-size: 1.4rem;
  }

  .about-content p {
    font-size: 0.9rem;
  }

  .credential {
    font-size: 0.8rem;
  }

  .credential-icon {
    width: 30px;
    height: 30px;
  }

  /* Service cards small mobile */
  .service-card {
    padding: 1.25rem 1rem;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .service-card h3 {
    font-size: 1.05rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  /* Skin mapping small mobile */
  .skin-mapping > .container {
    gap: 1.5rem;
  }

  .skin-mapping-content h2 {
    font-size: 1.4rem;
  }

  .skin-mapping-content > p {
    font-size: 0.9rem;
  }

  .mapping-feature-icon {
    width: 30px;
    height: 30px;
  }

  .mapping-feature-icon .icon-svg {
    width: 14px;
    height: 14px;
  }

  /* Shop products small mobile */
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-categories {
    gap: 0.5rem;
  }

  /* Quiz small mobile */
  .quiz-option {
    padding: 1rem;
    font-size: 0.85rem;
  }

  .quiz-option-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ========================================
   SVG ICONS
   ======================================== */
.icon-svg {
  width: 24px;
  height: 24px;
  stroke: var(--burgundy);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.service-icon .icon-svg {
  width: 28px;
  height: 28px;
}

.credential-icon .icon-svg,
.credential-item-icon .icon-svg {
  width: 20px;
  height: 20px;
}

.contact-detail-icon .icon-svg {
  width: 22px;
  height: 22px;
}

.footer-contact-icon {
  flex-shrink: 0;
}

.footer-contact-icon .icon-svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.5);
}

/* --- Social SVG Icons --- */
.social-icon-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.footer-social .social-icon-svg {
  width: 16px;
  height: 16px;
}

.contact-social .social-icon-svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   GOLD ACCENT DIVIDERS
   ======================================== */
.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 0.75rem;
}

.text-center .section-label::after {
  margin-left: auto;
  margin-right: auto;
}

.testimonials .section-label::after {
  background: var(--gold-light);
}

/* --- Gold accent line on nav brand --- */
.nav-brand {
  position: relative;
}

.nav-brand::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}

/* --- CTA gold accent --- */
.cta-section {
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* --- Service card gold top border on hover --- */
.service-card:hover {
  border-color: var(--gold-light);
}

/* --- Service item gold left border --- */
.service-item {
  border-left: 3px solid transparent;
}

.service-item:hover {
  border-left-color: var(--gold);
}

/* --- Credential item gold left accent --- */
.credential-item {
  border-left: 3px solid var(--gold-light);
}

/* --- FAQ gold accent on active --- */
.faq-item.active {
  border-left: 3px solid var(--gold);
}

/* --- Footer gold divider above bottom --- */
.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.3);
}

/* --- Gallery item gold border on hover --- */
.gallery-full-item:hover {
  border: 1px solid var(--gold-light);
}

/* --- Page hero gold underline on h1 --- */
.page-hero h1::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ========================================
   FLOATING BOOK NOW CTA
   ======================================== */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  background: rgba(123, 45, 59, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: none;
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-cta.solid {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(123, 45, 59, 0.35);
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.floating-cta:hover {
  background: rgba(123, 45, 59, 0.85);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 28px rgba(123, 45, 59, 0.4);
}

.floating-cta .cta-sparkle {
  font-size: 1rem;
  animation: twinkle 2s ease-in-out infinite;
}

/* ctaPulse removed - glassmorphism style is cleaner */

@media (max-width: 768px) {
  .floating-cta {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1.4rem;
    font-size: 0.75rem;
  }
}

/* ========================================
   MARQUEE STRIP
   ======================================== */
.marquee-strip {
  background: var(--charcoal);
  color: var(--gold-light);
  overflow: hidden;
  padding: 0.75rem 0;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 2rem;
}

.marquee-track .marquee-dot {
  color: var(--gold);
  font-size: 0.5rem;
  vertical-align: middle;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   SPARKLE DECORATIONS
   ======================================== */
.sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.sparkle svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  opacity: 0.5;
  animation: twinkle 3s ease-in-out infinite;
}

.sparkle:nth-child(2) svg { width: 12px; height: 12px; animation-delay: 0.5s; opacity: 0.3; }
.sparkle:nth-child(3) svg { width: 20px; height: 20px; animation-delay: 1s; opacity: 0.4; }
.sparkle:nth-child(4) svg { width: 10px; height: 10px; animation-delay: 1.5s; opacity: 0.35; }
.sparkle:nth-child(5) svg { width: 14px; height: 14px; animation-delay: 2s; opacity: 0.45; }

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 0.7; transform: scale(1.2) rotate(15deg); }
}

/* ========================================
   WAVY SECTION DIVIDERS
   ======================================== */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider.flip {
  transform: rotate(180deg);
}

/* ========================================
   ANIMATED GRADIENT TEXT
   ======================================== */
.gradient-text {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light), var(--gold), var(--burgundy));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--burgundy-muted);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--burgundy);
}

/* ========================================
   NAV LOGO IMAGE
   ======================================== */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-brand img {
  height: 110px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.navbar.scrolled .nav-brand img {
  height: 80px;
}

.nav-brand .brand-text {
  display: none;
}

/* ========================================
   HERO ENHANCEMENTS
   ======================================== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(123, 45, 59, 0.08);
  border: 1px solid rgba(123, 45, 59, 0.15);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--charcoal-light);
  font-weight: 500;
}

.hero-trust-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* Google Rating Badge */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(4px);
}

.google-rating-stars {
  color: #FBBC05;
  font-size: 1rem;
  letter-spacing: 1px;
}

.google-rating-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.google-g {
  flex-shrink: 0;
}

/* ========================================
   GALLERY MASONRY / BETTER LAYOUT
   ======================================== */
.gallery-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-showcase .gallery-item:first-child {
  grid-row: span 2;
}

.gallery-showcase .gallery-item {
  aspect-ratio: auto;
  min-height: 250px;
}

/* Before/After Slider */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: ew-resize;
}

.ba-slider img {
  display: block;
  width: 100%;
}

.ba-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(44, 32, 36, 0.8);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.ba-label.before { left: 1rem; }
.ba-label.after { right: 1rem; }

/* ========================================
   DECORATIVE BOTANICAL SVG DIVIDERS
   ======================================== */
.botanical-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.botanical-divider svg {
  width: 80px;
  height: auto;
  stroke: var(--gold);
  stroke-width: 1;
  fill: none;
  opacity: 0.5;
}

.botanical-divider .divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

/* ========================================
   WHIMSICAL SECTION BACKGROUNDS
   ======================================== */
.services-preview {
  position: relative;
  overflow: hidden;
}

.services-preview::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.12);
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.about-preview {
  position: relative;
  overflow: hidden;
}

.about-preview::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06), transparent 70%);
  pointer-events: none;
  animation: float 15s ease-in-out infinite;
}

.gallery-preview {
  position: relative;
  overflow: hidden;
}

.gallery-preview::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(123, 45, 59, 0.06);
  pointer-events: none;
}

/* ========================================
   SKINCARE QUIZ PAGE
   ======================================== */
.quiz-section {
  background: var(--white);
  min-height: 60vh;
}

.quiz-container {
  max-width: 700px;
  margin: 0 auto;
}

.quiz-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.quiz-progress-bar {
  flex: 1;
  height: 4px;
  background: var(--rose-light);
  border-radius: 10px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  border-radius: 10px;
  transition: width 0.5s ease;
}

.quiz-progress-text {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  font-weight: 500;
  white-space: nowrap;
}

.quiz-question {
  text-align: center;
  margin-bottom: 2.5rem;
}

.quiz-question h2 {
  margin-bottom: 0.5rem;
}

.quiz-question p {
  margin: 0 auto;
  color: var(--charcoal-light);
}

.quiz-options {
  display: grid;
  gap: 1rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: left;
  width: 100%;
  color: var(--charcoal);
}

.quiz-option:hover {
  border-color: var(--burgundy-muted);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.quiz-option.selected {
  border-color: var(--burgundy);
  background: rgba(123, 45, 59, 0.05);
}

.quiz-option-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.quiz-option.selected .quiz-option-icon {
  background: var(--burgundy);
  color: var(--white);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  gap: 1rem;
}

/* Quiz Results */
.quiz-results {
  text-align: center;
}

.quiz-results h2 {
  margin-bottom: 0.5rem;
}

.quiz-results > p {
  margin: 0 auto 2rem;
}

.quiz-result-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--gold);
  text-align: left;
}

.quiz-result-card h3 {
  margin-bottom: 0.5rem;
  color: var(--burgundy);
}

.quiz-result-card p {
  font-size: 0.95rem;
}

.quiz-result-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.quiz-product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--rose);
  transition: all 0.3s ease;
}

.quiz-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.quiz-product-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.quiz-product-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.quiz-product-card p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}

/* ========================================
   SHOP PAGE
   ======================================== */
.shop-section {
  background: var(--white);
}

.shop-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.shop-intro p {
  margin: 0 auto;
}

.shop-categories {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.product-card-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--rose-light) 100%);
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
}

.product-card-info {
  padding: 1.5rem;
}

.product-card-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.product-card-info .product-brand {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--burgundy-muted);
  margin-bottom: 0.5rem;
}

.product-card-info p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--burgundy);
}

.product-card-footer .btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.7rem;
}

/* ========================================
   SKIN MAPPING INTERACTIVE SECTION
   ======================================== */
.skin-mapping {
  padding: 0 0 6rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.skin-mapping > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.skin-mapping-content .section-label::after {
  margin-left: 0;
}

.skin-mapping-content p {
  color: var(--charcoal-light);
  margin-bottom: 1.5rem;
}

.skin-mapping-features {
  list-style: none;
  margin-bottom: 2rem;
}

.skin-mapping-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.mapping-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(123, 45, 59, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mapping-feature-icon .icon-svg {
  width: 18px;
  height: 18px;
  stroke: var(--burgundy);
}

/* Face Map Container */
.skin-mapping-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.face-map {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  border-radius: 50% 50% 45% 45%;
  background: radial-gradient(ellipse at center, rgba(123, 45, 59, 0.03) 0%, transparent 70%);
  border: 1px solid rgba(123, 45, 59, 0.08);
}

.face-svg {
  position: absolute;
  inset: 5%;
  width: 90%;
  height: 90%;
}

/* Scan Line Animation */
.scan-line {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: 0;
  animation: scanDown 4s ease-in-out infinite;
  pointer-events: none;
  border-radius: 1px;
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.4);
}

@keyframes scanDown {
  0% { top: 10%; opacity: 0; }
  5% { opacity: 0.7; }
  90% { opacity: 0.7; }
  95% { opacity: 0; }
  100% { top: 90%; opacity: 0; }
}

/* Hotspot Buttons */
.face-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  z-index: 5;
}

.hotspot-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--burgundy);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 6px rgba(123, 45, 59, 0.4);
  transition: all 0.3s ease;
}

.hotspot-ping {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(123, 45, 59, 0.15);
  animation: hotspotPulse 2.5s ease-in-out infinite;
}

.face-hotspot:nth-child(odd) .hotspot-ping {
  animation-delay: 0.5s;
}

.face-hotspot:nth-child(3n) .hotspot-ping {
  animation-delay: 1s;
}

@keyframes hotspotPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

.face-hotspot:hover .hotspot-dot,
.face-hotspot.active .hotspot-dot {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.3);
  box-shadow: 0 0 14px rgba(201, 169, 110, 0.6);
}

.face-hotspot.active .hotspot-ping {
  background: rgba(201, 169, 110, 0.2);
}

/* Tooltip */
.face-tooltip {
  position: absolute;
  z-index: 10;
  width: 220px;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(44, 32, 36, 0.15);
  border: 1px solid var(--rose);
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: all 0.3s ease;
  pointer-events: none;
}

.face-tooltip.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.face-tooltip-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 0.4rem;
}

.face-tooltip-concerns {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.face-tooltip-treatment {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.face-map-hint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--charcoal-light);
  font-style: italic;
  text-align: center;
}

/* Skin Mapping Responsive */
@media (max-width: 968px) {
  .skin-mapping > .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .skin-mapping-content .section-label::after {
    margin-left: auto;
    margin-right: auto;
  }

  .skin-mapping-features {
    display: inline-block;
    text-align: left;
  }

  .face-map {
    max-width: 260px;
    margin: 0 auto;
  }

  .face-tooltip {
    width: 170px;
    padding: 1rem;
  }
}

/* ========================================
   SECTION ACCENT SHAPES
   ======================================== */
.accent-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
}

.accent-shape.circle {
  border-radius: 50%;
  border: 2px solid var(--burgundy);
}

.accent-shape.ring {
  border-radius: 50%;
  border: 1px solid var(--gold);
}

/* ========================================
   ENHANCED TESTIMONIAL CARDS
   ======================================== */
.testimonial-card {
  position: relative;
}

.testimonial-source {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
}

/* ========================================
   SCROLL-REVEAL EXTRAS
   ======================================== */
.fade-in-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Referral Section --- */
.referral-section {
  padding: 5rem 0;
  background: var(--white);
}

.referral-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.referral-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.referral-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.referral-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.referral-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.referral-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

/* --- Ambassador Section --- */
.ambassador-section {
  padding: 5rem 0;
  background: var(--cream);
}

.ambassador-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ambassador-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ambassador-text p {
  margin-bottom: 1.5rem;
  color: var(--charcoal-light);
}

.ambassador-perks {
  list-style: none;
  margin-bottom: 2rem;
}

.ambassador-perks li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--charcoal);
}

.ambassador-perks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-weight: 700;
}

.ambassador-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ambassador-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .ambassador-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ambassador-image {
    order: -1;
    max-height: 300px;
  }

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

/* --- Quiz Multi-Select --- */
.quiz-option .quiz-check {
  margin-left: auto;
  color: var(--burgundy);
  font-weight: 700;
  font-size: 1.1rem;
}

/* --- Legal Pages --- */
.legal-content h2 {
  font-family: var(--font-heading);
  color: var(--burgundy);
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--charcoal-light);
}
.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--charcoal-light);
}
.legal-content a {
  color: var(--burgundy);
}
