/* Base Styles & Reset */
:root {
  /* Brand Color Palette */
  --color-burgundy: #5b0009;
  --color-burgundy-light: #7a000c;
  --color-burgundy-dark: #400007;
  --color-gold: #d4a01d;
  --color-gold-light: #e9b94a;
  --color-gold-dark: #b38516;
  --color-cream: #f9f4e8;
  --color-off-white: #f5f1ea;
  --color-white: #ffffff;
  --color-black: #1a1a1a;
  --color-gray-light: #f0ece5;
  --color-gray: #a9a9a9;
  --color-gray-dark: #555555;

  /* Typography */
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;

  /* Borders & Shadows */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 5px 15px rgba(212, 160, 29, 0.2);
  --shadow-burgundy: 0 5px 15px rgba(91, 0, 9, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

/* Accessibility */
:focus-visible {
  outline: 3px solid rgba(212, 160, 29, 0.9);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-120%);
  padding: 0.75rem 1rem;
  background: var(--color-burgundy);
  color: var(--color-white);
  border-radius: 0 0 var(--border-radius-md) 0;
  z-index: 2000;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-off-white);
  overflow-x: hidden;
}

/* ==========================================
   Luxe global theme (modern editorial)
   Applies across all pages via body.luxe
   ========================================== */
.luxe {
  background: #fbfaf8;
  color: #141414;
}

/* Modern section rhythm */
.luxe section {
  padding: clamp(3rem, 5vw, 5.5rem) 0;
}

/* Header: clean + premium */
.luxe .header {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(91, 0, 9, 0.08);
}

.luxe .header.sticky {
  background-color: rgba(255, 255, 255, 0.98);
}

.luxe .nav-link {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 600;
}

.luxe .btn {
  border-radius: 999px;
}

.luxe .btn-primary {
  background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-burgundy-dark) 100%);
  border: 1px solid rgba(212, 160, 29, 0.35);
  box-shadow: 0 10px 25px rgba(91, 0, 9, 0.18);
}

.luxe .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(91, 0, 9, 0.22);
}

.luxe .btn-outline,
.luxe .btn-outline-gold {
  backdrop-filter: blur(8px);
}

/* Soften decorative “theme borders” globally */
.luxe .luxury-border {
  border-radius: 18px;
}

.luxe .luxury-border::after {
  opacity: 0.35;
  background: linear-gradient(135deg, rgba(91, 0, 9, 0.9), rgba(212, 160, 29, 0.9), rgba(91, 0, 9, 0.9));
}

/* Remove gimmicky drip visuals across the new theme */
.luxe .nail-polish-drip::before,
.luxe .nail-polish-drip::after,
.luxe .nail-polish-drips {
  display: none !important;
}

/* Contact cards: make them premium surfaces */
.luxe .contact-grid {
  gap: clamp(1.25rem, 3vw, 2rem);
}

.luxe .contact-info {
  gap: clamp(0.9rem, 2.2vw, 1.25rem);
}

.luxe .contact-item {
  background: #fff;
  border: 1px solid rgba(91, 0, 9, 0.10);
  border-radius: 18px;
  padding: 1.15rem 1.1rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.luxe .contact-item:hover {
  transform: translateY(-4px);
}

.luxe .contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(91, 0, 9, 0.06);
}

.luxe .contact-icon::after {
  border: 1px solid rgba(212, 160, 29, 0.35);
  opacity: 1;
}

.luxe .contact-content p {
  margin-bottom: 0.5rem;
}

.luxe .contact-content a {
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 160, 29, 0.45);
}

.luxe .contact-content a:hover {
  border-bottom-color: rgba(91, 0, 9, 0.55);
}

.luxe .contact-map {
  border-radius: 22px;
  border: 1px solid rgba(91, 0, 9, 0.10);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.10);
  min-height: 360px;
}

.luxe .contact-map iframe {
  border-radius: 22px;
}

/* Keep “business hours” section aligned with cards */
.luxe .business-hours {
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(91, 0, 9, 0.10);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.luxe .hours-item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.luxe .hours-item:hover {
  transform: none;
}

/* ------------------------------------------
   Home hero (also OK as a pattern library)
   ------------------------------------------ */
.home-hero {
  padding-top: 110px;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  position: relative;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(91, 0, 9, 0.78) 0%, rgba(91, 0, 9, 0.35) 52%, rgba(91, 0, 9, 0.12) 100%),
    url("/assets/images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.05);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 420px at 30% 20%, rgba(212, 160, 29, 0.22), transparent 60%);
  pointer-events: none;
}

.home-hero .container {
  position: relative;
  z-index: 1;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.home-hero__kicker {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.home-hero__title {
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 0.9rem;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.home-hero__subtitle {
  font-size: 1.05rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.4rem;
}

.home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.home-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(212, 160, 29, 0.28);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
}

.home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.home-hero__meta-item {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.home-hero__meta-item:hover {
  color: var(--color-gold-light);
}

.home-hero__media {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.33);
  background: rgba(255, 255, 255, 0.08);
}

.home-hero__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.02);
}

@media (min-width: 992px) {
  .home-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

/* ------------------------------------------
   Luxe surfaces + section typography
   ------------------------------------------ */
.home-section .section-title,
.home-title {
  color: var(--color-burgundy);
}

.home-surface {
  border-radius: var(--border-radius-xl);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(91, 0, 9, 0.08);
}

.home-subtitle {
  color: rgba(26, 26, 26, 0.72);
}

/* Gallery preview (home) */
.home-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.home-gallery__item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  background: #fff;
}

.home-gallery__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14);
}

.home-gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

@media (min-width: 768px) {
  .home-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

/* Prevent background scroll when mobile menu is open */
html.menu-open,
html.menu-open body {
  overflow: hidden;
}

.page-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--color-burgundy);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: 0.3px;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--spacing-md);
}

.accent {
  color: var(--color-gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-medium);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: height var(--transition-medium);
  z-index: -1;
}

.btn:hover::after {
  height: 100%;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-burgundy);
  color: var(--color-white);
  box-shadow: var(--shadow-burgundy);
  border: 1px solid var(--color-burgundy);
}

.btn-primary:hover {
  background-color: var(--color-burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 0, 9, 0.25);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--color-gold);
}

.btn-gold:hover {
  background-color: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 160, 29, 0.3);
}

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

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

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.header.sticky {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--color-black);
  padding: var(--spacing-xs) 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-burgundy), var(--color-gold));
  transition: width var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-burgundy);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.header-phone-link {
  font-weight: 600;
  color: var(--color-burgundy);
  white-space: nowrap;
}

.header-phone-link:hover {
  color: var(--color-gold);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1001;
}

.bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-burgundy);
  transition: all var(--transition-fast);
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--transition-medium), transform var(--transition-medium);
  z-index: 999;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-list {
  padding: var(--spacing-lg) 0;
}

.mobile-nav-link {
  display: block;
  padding: var(--spacing-md) 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-black);
  border-bottom: 1px solid var(--color-gray-light);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-burgundy);
}

.mobile-cta {
  margin-top: var(--spacing-lg);
  width: 100%;
}

.mobile-menu-ctas {
  display: grid;
  gap: var(--spacing-sm);
  padding-bottom: var(--spacing-lg);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--spacing-xxl) 0;
}

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

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  color: var(--color-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.hero-note {
  margin-top: var(--spacing-md);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(91, 0, 9, 0.8), rgba(91, 0, 9, 0.5));
}

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

/* Section Styles */
section {
  padding: var(--spacing-xxl) 0;
}

.section-alt {
  background-color: var(--color-cream);
}

.home-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.home-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

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

.faq {
  display: grid;
  gap: var(--spacing-md);
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--color-burgundy);
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-item[open] .faq-question {
  background: linear-gradient(135deg, rgba(91, 0, 9, 0.06), rgba(212, 160, 29, 0.06));
}

.faq-answer {
  padding: 0 1.25rem 1.1rem;
  color: var(--color-gray-dark);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.visit-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.visit-title {
  margin-bottom: var(--spacing-sm);
}

.visit-line {
  margin-bottom: var(--spacing-sm);
}

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

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-burgundy);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--color-burgundy), var(--color-gold));
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray-dark);
  max-width: 700px;
  margin: var(--spacing-md) auto 0;
}

/* Services Preview */
.services-preview {
  background-color: var(--color-white);
  position: relative;
}

.services-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: none;
  background-size: 300px;
  background-repeat: repeat;
  opacity: 0.03;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.service-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(212, 160, 29, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--color-burgundy), var(--color-gold));
  transition: height var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--color-cream);
  border-radius: 50%;
  margin-bottom: var(--spacing-md);
  color: var(--color-burgundy);
  position: relative;
  transition: all var(--transition-medium);
}

.service-icon::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  opacity: 0.5;
}

.service-card:hover .service-icon {
  background-color: var(--color-burgundy);
  color: var(--color-white);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-burgundy);
  transition: color var(--transition-medium);
}

.service-card:hover .service-title {
  color: var(--color-gold);
}

.service-description {
  color: var(--color-gray-dark);
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
}

.service-link {
  color: var(--color-burgundy);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-bottom: 2px;
}

.service-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width var(--transition-medium);
}

.service-link:hover {
  color: var(--color-gold);
}

.service-link:hover::after {
  width: 100%;
}

.service-link-icon {
  margin-left: var(--spacing-xs);
  transition: transform var(--transition-fast);
}

.service-link:hover .service-link-icon {
  transform: translateX(4px);
}

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

/* Gallery Preview */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  aspect-ratio: 1;
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(91, 0, 9, 0.7), transparent);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-md);
  color: var(--color-white);
  z-index: 2;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.gallery-item:hover .gallery-item-caption {
  transform: translateY(0);
}

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

/* Testimonials */
.testimonials {
  background-color: var(--color-cream);
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: none;
  background-size: 200px;
  background-repeat: repeat;
  opacity: 0.03;
  pointer-events: none;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  height: 300px;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(100px);
  transition: opacity var(--transition-medium), transform var(--transition-medium);
  border: 1px solid rgba(212, 160, 29, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-md);
  color: var(--color-burgundy);
  font-size: 1.5rem;
  font-weight: 600;
  border: 1px solid rgba(212, 160, 29, 0.3);
}

.testimonial-info {
  flex-grow: 1;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-burgundy);
  margin-bottom: 2px;
}

.testimonial-source {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-gray);
}

.testimonial-source img {
  height: 16px;
  width: auto;
  margin-right: 5px;
}

.testimonial-rating {
  display: flex;
  margin-bottom: var(--spacing-md);
}

.star {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-right: 2px;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-gray-dark);
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-left: var(--spacing-md);
  border-left: 3px solid var(--color-gold);
}

.testimonial-date {
  font-size: 0.85rem;
  color: var(--color-gray);
  text-align: right;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.testimonial-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-burgundy);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  border: 1px solid rgba(91, 0, 9, 0.1);
}

.testimonial-nav-btn:hover {
  background-color: var(--color-burgundy);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-burgundy), var(--color-burgundy-dark));
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: none;
  background-size: 300px;
  background-repeat: repeat;
  opacity: 0.03;
  animation: rotate 60s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.cta-note {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  margin-top: auto;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--color-burgundy), var(--color-gold));
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--spacing-md);
}

.footer-tagline {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: var(--color-gray-light);
}

.footer-address,
.footer-phone {
  margin-bottom: var(--spacing-md);
  color: var(--color-gray-light);
}

.footer-phone a {
  color: var(--color-gold);
  transition: color var(--transition-fast);
}

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

.footer-hours {
  margin-bottom: var(--spacing-md);
}

.footer-hours h4,
.footer-links h4,
.footer-social h4 {
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
  padding-bottom: var(--spacing-xs);
}

.footer-hours h4::after,
.footer-links h4::after,
.footer-social h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-burgundy);
}

.footer-hours p {
  margin-bottom: var(--spacing-xs);
  color: var(--color-gray-light);
}

.footer-links ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
}

.footer-links a {
  color: var(--color-gray-light);
  transition: color var(--transition-fast);
  position: relative;
  padding-left: var(--spacing-md);
}

.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  transition: transform var(--transition-fast);
}

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

.footer-links a:hover::before {
  transform: translateX(3px);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--color-burgundy);
  transform: translateY(-3px);
}

.newsletter h4 {
  margin-bottom: var(--spacing-sm);
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-sm);
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--color-gold);
}

.newsletter-form .btn {
  padding: 0.75rem 1rem;
  background-color: var(--color-gold);
  color: var(--color-white);
  border: none;
}

.newsletter-form .btn:hover {
  background-color: var(--color-gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-gray);
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-burgundy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-medium);
  z-index: 99;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--color-gold);
  transform: translateY(-5px);
}

/* Page Header */
.page-header {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  padding: clamp(3.5rem, 6vw, 6.5rem) 0 clamp(2.5rem, 4vw, 4rem);
  text-align: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(91, 0, 9, 0.80) 0%, rgba(91, 0, 9, 0.45) 60%, rgba(91, 0, 9, 0.22) 100%),
    url(\"/assets/images/hero-bg.webp\");
  background-size: cover;
  background-position: center;
}

.page-header::before {
  content: \"\";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 420px at 30% 20%, rgba(212, 160, 29, 0.22), transparent 60%);
  pointer-events: none;
}

.page-title {
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.page-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-gold);
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: var(--spacing-md) auto 0;
}

/* Custom Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-600 {
  animation-delay: 0.6s;
}

/* Nail Polish Drip Effect */
.nail-polish-drip {
  position: relative;
  overflow: hidden;
}

.nail-polish-drip::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 20px;
  background-color: var(--color-burgundy);
  border-radius: 0 0 15px 15px;
  z-index: 1;
}

.nail-polish-drip::after {
  content: "";
  position: absolute;
  top: -5px;
  left: calc(50% + 15px);
  width: 15px;
  height: 25px;
  background-color: var(--color-gold);
  border-radius: 0 0 10px 10px;
  z-index: 1;
}

/* Service Category Styles */
.service-category {
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--color-gray-light);
}

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

.category-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--color-cream);
  border-radius: 50%;
  margin-bottom: var(--spacing-md);
  color: var(--color-burgundy);
  position: relative;
}

.category-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  opacity: 0.3;
}

.category-title {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-burgundy);
}

.category-description {
  color: var(--color-gray-dark);
  max-width: 600px;
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--spacing-md);
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border: 1px solid rgba(212, 160, 29, 0.05);
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 160, 29, 0.2);
}

.service-details {
  flex: 1;
}

.service-name {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
  color: var(--color-burgundy);
}

.service-item .service-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold);
  text-align: right;
  white-space: nowrap;
  margin-left: var(--spacing-md);
}

.service-note {
  padding: var(--spacing-md);
  background-color: var(--color-cream);
  border-radius: var(--border-radius-md);
  border-left: 3px solid var(--color-gold);
  font-size: 0.9rem;
  color: var(--color-gray-dark);
}

.waxing-note {
  font-size: 0.8rem;
  padding: var(--spacing-sm);
  background-color: rgba(245, 241, 234, 0.5);
  border-left: 2px solid var(--color-gold);
}

.waxing-note h4 {
  font-size: 0.9rem;
  margin-bottom: var(--spacing-xs);
}

/* Gallery Page Styles */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  justify-content: center;
}

.gallery-filter {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-full);
  background-color: var(--color-white);
  color: var(--color-burgundy);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid rgba(91, 0, 9, 0.1);
}

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

/* Gallery lightbox (used on gallery.html) */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: min(1100px, 92vw);
  max-height: 90vh;
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.lightbox-close {
  position: absolute;
  top: -54px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.lightbox-nav-btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  display: grid;
  place-items: center;
}

.lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.lightbox-caption {
  margin-top: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* Reviews Page Styles */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.review-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.stat-item {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(91, 0, 9, 0.10);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  padding: 1.25rem 1.25rem;
  text-align: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 1.05;
  color: var(--color-burgundy);
  margin-bottom: 0.2rem;
}

.stat-label {
  color: rgba(26, 26, 26, 0.7);
  font-weight: 600;
}

.review-highlight {
  border-radius: 22px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-burgundy), var(--color-burgundy-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.review-name {
  font-weight: 700;
  color: var(--color-burgundy);
}

.review-date {
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.6);
}

.review-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.review-star {
  color: var(--color-gold);
  font-size: 1.05rem;
}

.review-text {
  color: rgba(26, 26, 26, 0.75);
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(26, 26, 26, 0.55);
  font-size: 0.92rem;
}

.review-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
}

.review-platform {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(91, 0, 9, 0.10);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  min-width: 140px;
}

.review-platform-name {
  font-weight: 700;
  color: var(--color-burgundy);
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.review-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(212, 160, 29, 0.1);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--color-burgundy), var(--color-gold));
  transition: height var(--transition-medium);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.review-card:hover::before {
  height: 100%;
}

.review-highlight {
  background-color: var(--color-cream);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 160, 29, 0.1);
}

.review-highlight::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 6rem;
  font-family: var(--font-heading);
  color: var(--color-burgundy);
  opacity: 0.1;
  line-height: 1;
}

.review-highlight-text {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--color-burgundy);
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.review-highlight-author {
  font-weight: 600;
  color: var(--color-gold);
  text-align: right;
}

.review-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background-color: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  min-width: 150px;
  border: 1px solid rgba(212, 160, 29, 0.1);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-burgundy);
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--color-gold);
  font-weight: 500;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  transition: transform var(--transition-medium);
}

.contact-item:hover {
  transform: translateY(-3px);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-cream);
  border-radius: 50%;
  color: var(--color-burgundy);
  flex-shrink: 0;
  position: relative;
  transition: all var(--transition-medium);
}

.contact-icon::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  opacity: 0.3;
}

.contact-item:hover .contact-icon {
  background-color: var(--color-burgundy);
  color: var(--color-white);
}

.contact-content h3 {
  margin-bottom: var(--spacing-xs);
  color: var(--color-burgundy);
}

.contact-content p {
  color: var(--color-gray-dark);
  margin-bottom: var(--spacing-xs);
}

.contact-content a {
  color: var(--color-gold);
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

.contact-map {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
  border: 5px solid var(--color-white);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 160, 29, 0.1);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  color: var(--color-burgundy);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 29, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: var(--spacing-md);
}

.business-hours {
  margin-top: var(--spacing-xl);
  background-color: var(--color-cream);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 160, 29, 0.1);
}

.business-hours h3 {
  margin-bottom: var(--spacing-md);
  color: var(--color-burgundy);
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: var(--spacing-xs);
}

.business-hours h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-gold);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(212, 160, 29, 0.1);
  transition: transform var(--transition-fast);
}

.hours-item:hover {
  transform: translateX(5px);
}

.hours-item:last-child {
  border-bottom: none;
}

.day {
  font-weight: 500;
  color: var(--color-burgundy);
}

.time {
  color: var(--color-gray-dark);
}

.closed {
  color: var(--color-burgundy);
  font-weight: 500;
}

/* Privacy Policy Page Styles */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 160, 29, 0.1);
}

.policy-section {
  margin-bottom: var(--spacing-xl);
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  color: var(--color-burgundy);
  margin-bottom: var(--spacing-md);
  font-size: 1.75rem;
  position: relative;
  padding-bottom: var(--spacing-xs);
  display: inline-block;
}

.policy-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-gold);
}

.policy-section p {
  color: var(--color-gray-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.policy-section ul {
  list-style-type: disc;
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.policy-section li {
  color: var(--color-gray-dark);
  margin-bottom: var(--spacing-xs);
}

.policy-date {
  font-style: italic;
  color: var(--color-gray);
  text-align: right;
  margin-top: var(--spacing-lg);
}

/* Responsive Styles */
@media (min-width: 768px) {
  .main-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .home-two-col {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .visit-card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: var(--spacing-sm);
}

.mb-2 {
  margin-bottom: var(--spacing-md);
}

.mb-3 {
  margin-bottom: var(--spacing-lg);
}

.mb-4 {
  margin-bottom: var(--spacing-xl);
}

.mt-1 {
  margin-top: var(--spacing-sm);
}

.mt-2 {
  margin-top: var(--spacing-md);
}

.mt-3 {
  margin-top: var(--spacing-lg);
}

.mt-4 {
  margin-top: var(--spacing-xl);
}

/* Custom Nail Polish Cursor */
.nail-cursor {
  cursor: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

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

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

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

/* Luxury Theme Additions */
.luxury-border {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.luxury-border::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, var(--color-burgundy), var(--color-gold), var(--color-burgundy));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  border-radius: inherit;
}

.depth-card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.depth-card:hover {
  transform: translateY(-10px) rotateX(5deg);
}

.depth-card::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 5%;
  width: 90%;
  height: 20px;
  background: rgba(0, 0, 0, 0.2);
  filter: blur(15px);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.5s ease;
}

.depth-card:hover::before {
  bottom: -25px;
  opacity: 0.7;
}

.gold-accent {
  position: relative;
}

.gold-accent::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  background-image: none;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.service-spotlight {
  position: relative;
  overflow: hidden;
}

.service-spotlight::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(212, 160, 29, 0) 0%,
    rgba(212, 160, 29, 0.1) 50%,
    rgba(212, 160, 29, 0) 100%
  );
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

.gold-leaf-text {
  color: var(--color-burgundy);
  text-shadow: 0 1px 0 var(--color-gold-light), 0 2px 0 rgba(212, 160, 29, 0.5), 0 3px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
}

.royal-gradient {
  background: linear-gradient(135deg, var(--color-burgundy), var(--color-burgundy-dark));
  position: relative;
  overflow: hidden;
}

.royal-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: none;
  background-size: 200px;
  background-repeat: repeat;
  opacity: 0.05;
  pointer-events: none;
}

.burgundy-text {
  color: var(--color-burgundy);
  font-weight: 600;
}

.gold-text {
  color: var(--color-gold);
  font-weight: 600;
}

.contact-details {
  padding: var(--spacing-md);
  background-color: var(--color-cream);
  border-radius: var(--border-radius-md);
  border-left: 3px solid var(--color-gold);
  margin-bottom: var(--spacing-md);
}

/* Error Page Styles */
.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: var(--spacing-xl);
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--color-burgundy);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
  line-height: 1;
  position: relative;
}

.error-code::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--color-burgundy), var(--color-gold));
}

.error-title {
  font-size: 2.5rem;
  color: var(--color-burgundy);
  margin-bottom: var(--spacing-md);
}

.error-message {
  font-size: 1.2rem;
  color: var(--color-gray-dark);
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
}

.error-image {
  max-width: 300px;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.error-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.error-image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--color-gold);
  border-radius: var(--border-radius-lg);
  opacity: 0.3;
  z-index: -1;
}

/* Page Transitions */
.page-transition-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-transition-out {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Nail Polish Drips */
.nail-polish-drips {
  position: relative;
  height: 50px;
  width: 100%;
  overflow: hidden;
}

.drip {
  position: absolute;
  top: 0;
  width: 30px;
  height: 50px;
  background-color: var(--color-burgundy);
  border-radius: 0 0 15px 15px;
}

.drip-1 {
  left: 20%;
  height: 40px;
  background-color: var(--color-burgundy);
}

.drip-2 {
  left: 50%;
  height: 50px;
  background-color: var(--color-gold);
}

.drip-3 {
  left: 80%;
  height: 35px;
  background-color: var(--color-burgundy-light);
}

/* Royal Corner Decorations */
.royal-header {
  position: relative;
  padding: 2rem;
}

.corner-decoration {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid var(--color-gold);
}

.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* Royal Divider */
.royal-divider {
  position: relative;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--color-burgundy), transparent);
  margin: 3rem auto;
  width: 80%;
}

.royal-divider::before {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: var(--color-gold);
  padding: 0 15px;
  font-size: 1.5rem;
}

/* Luxury Frame */
.royal-frame {
  position: relative;
  padding: 15px;
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  overflow: visible;
  cursor: pointer;
}

.royal-frame:focus-visible {
  outline: 3px solid rgba(212, 160, 29, 0.9);
  outline-offset: 6px;
}

.royal-frame::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid var(--color-gold);
  z-index: 0;
  pointer-events: none;
}

.royal-frame::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 30px;
  height: 30px;
  background-image: none;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}

.frame-inner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.royal-frame:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
}

.royal-frame:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(91, 0, 9, 0.8), transparent);
  padding: 2rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.royal-frame:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-title {
  color: var(--color-white);
  margin: 0;
  font-size: 1.1rem;
  text-align: center;
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 1rem;
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: 3rem;
  position: relative;
  box-shadow: var(--shadow-md);
}

.testimonial-quote-mark {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 6rem;
  font-family: var(--font-heading);
  color: var(--color-gold);
  opacity: 0.2;
  line-height: 1;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(91, 0, 9, 0.2);
  transition: all var(--transition-fast);
}

.carousel-arrow:hover {
  background-color: var(--color-burgundy);
  color: var(--color-white);
}

.carousel-dots {
  display: flex;
  align-items: center;
  margin: 0 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-gray-light);
  margin: 0 5px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background-color: var(--color-gold);
  transform: scale(1.3);
}

/* NOTE: A large set of duplicated/experimental rules (including invalid selectors)\n+   previously lived below. They were removed to prevent unintended overrides\n+   and CSS parse errors. Keep shared styles in this file and theme styles in\n+   `royal-theme.css` / `luxury-effects.css`. */
