/*
Theme Name: The Refinery Hair Lounge
Theme URI: https://therefineryhairlounge.com
Author: The Refinery Hair Lounge
Author URI: https://therefineryhairlounge.com
Description: A sophisticated dark-themed WordPress theme for The Refinery Hair Lounge
Version: 2.5.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: refinery-hair
*/

/* ==========================================================================
   CSS Variables - Design System
   ========================================================================== */
:root {
  /* Primary Colors - Brand Guidelines */
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-off-white: #F0EDEB;
  --color-accent: #F9A33C;
  --color-accent-dark: #AD3C00;
  --color-accent-deep: #AD3C00;
  --color-brand-green: #485043;
  --color-brand-tan: #DCC88D;
  --color-brand-blue: #889A9C;
  --color-gray: #333333;
  --color-gray-light: #666666;
  --color-gray-lighter: #999999;

  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Font Sizes */
  --fs-h1: 40px;
  --fs-h2: 32px;
  --fs-h3: 28px;
  --fs-h4: 24px;
  --fs-h5: 20px;
  --fs-h6: 18px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-button: 15px;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 80px;

  /* Container */
  --container-max-width: 1200px;
  --container-padding: 20px;

  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

  /* Easing Curves - Premium Animations */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Animation Timing - Consolidated System */
  --duration-micro: 150ms;
  /* Button press, toggles */
  --duration-fast: 250ms;
  /* Hover states */
  --duration-base: 400ms;
  /* Reveals, modals */
  --duration-slow: 600ms;
  /* Page transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Interactive State Colors */
  --state-hover: rgba(249, 163, 60, 0.08);
  --state-active: rgba(249, 163, 60, 0.15);
}

/* ==========================================================================
   Font Imports
   ========================================================================== */
/* Fonts are loaded via header.php and functions.php for better reliability */

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--color-white);
  background-color: var(--color-black);
  overflow-x: hidden;
}

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

/* Lazy Image Fade-in */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-smooth);
}

img[loading="lazy"].loaded {
  opacity: 1;
}

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

a:hover {
  color: var(--color-accent);
}

ul,
ol {
  list-style: none;
}

/* ==========================================================================
   Focus & Interaction States
   ========================================================================== */

/* Focus-visible for keyboard users only */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Remove focus ring for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Button press feedback */
button,
.btn,
[role="button"] {
  transition: transform var(--duration-micro) var(--ease-smooth),
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base);
}

button:active,
.btn:active,
[role="button"]:active {
  transform: scale(0.97);
}

/* Card tap feedback for touch devices */
@media (hover: none) {

  .stylist-card:active,
  .service-item:active,
  .service-card:active {
    transform: scale(0.98);
    transition: transform var(--duration-micro) var(--ease-smooth);
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
}

h1 {
  font-family: var(--font-primary);
  font-size: var(--fs-h1);
  font-weight: 400;
  letter-spacing: 0.5px;
}

h2 {
  font-size: var(--fs-h2);
  color: var(--color-off-white);
}

h3 {
  font-size: var(--fs-h3);
  color: var(--color-off-white);
}

h4 {
  font-size: var(--fs-h4);
}

h5 {
  font-size: var(--fs-h5);
}

h6 {
  font-size: var(--fs-h6);
}

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

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

.text-uppercase {
  text-transform: uppercase;
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.section--dark {
  background-color: var(--color-black);
  color: var(--color-white);
}

.section--accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.section--accent-dark {
  background-color: var(--color-accent-dark);
  color: var(--color-white);
}

/* Page Hero - Full-bleed hero section that breaks out of .site-main padding on mobile */
/* Usage: Add .page-hero class to any hero section inside .site-main */
@media (max-width: 768px) {
  .page-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(236, 166, 81, 0.1);
}

.site-header.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  padding: 0.5rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* Admin Bar Accommodation */
body.admin-bar .site-header {
  top: 32px;
}

body.admin-bar .site-content {
  padding-top: 88px;
  /* 56px header + 32px admin bar */
}

/* Mobile admin bar is taller (46px) */
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .site-content {
    padding-top: 102px;
    /* 56px header + 46px admin bar */
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.site-branding {
  flex: 0 0 auto;
  z-index: 1001;
}

.site-title {
  font-family: var(--font-primary);
  font-size: var(--fs-h4);
  margin: 0;
  color: var(--color-white);
}

.site-logo {
  display: block;
  height: 36px;
  width: auto;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.site-logo:hover {
  opacity: 0.8;
}

.site-logo picture {
  display: block;
  height: 100%;
  width: auto;
}

.logo-image {
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .logo-image {
  transform: scale(0.9);
}

/* Main Navigation */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media (min-width: 769px) {
  .main-navigation {
    margin-left: 2rem;
  }
}

.nav-menu {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.nav-menu li {
  position: relative;
}

/* Hide mobile menu content on desktop */
.mobile-menu-cta,
.mobile-menu-footer {
  display: none;
}

.main-navigation .nav-menu a {
  color: var(--color-white);
  font-family: var(--font-primary) !important;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.75rem;
  transition: color var(--duration-fast) var(--ease-smooth);
  position: relative;
  display: inline-block;
}

/* Animated underline */
.main-navigation .nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.main-navigation .nav-menu a:hover::after,
.main-navigation .nav-menu .current-menu-item a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-navigation .nav-menu a:hover {
  color: var(--color-accent);
}

/* Header CTA Button */
.header-cta {
  flex: 0 0 auto;
}

/* Context-aware header CTA - hides when sidebar booking button is visible */
.header-cta.stylist-context {
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.header-cta.stylist-context.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ==========================================================================
   Mobile Menu Toggle - Scissors X Close Icon
   ========================================================================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.menu-toggle:active {
  transform: scale(0.95);
  transition: transform 0.1s ease-out;
}

/* Focus accessibility */
.menu-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

/* SVG icon container */
.scissors-icon {
  width: 24px;
  height: 24px;
  display: block;
  overflow: visible;
}

/* All SVG strokes */
.scissors-icon line,
.scissors-icon circle {
  fill: none;
  stroke: var(--color-white);
  stroke-width: 2;
  stroke-linecap: round;
  transition: all 0.35s var(--ease-out-expo);
}

/* Blade groups - transform origin at center pivot */
.scissors-blade {
  transform-origin: 12px 12px;
  transition: transform 0.35s var(--ease-out-expo);
}

/* Handles - styled with accent color */
.blade-handle {
  stroke: var(--color-accent);
  stroke-width: 2;
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  transform-box: fill-box;
  transition:
    opacity 0.2s ease-out,
    transform 0.3s var(--ease-out-back);
}

/* ==========================================================================
   HAMBURGER STATE (Menu Closed) - Transform X blades to horizontal lines
   ========================================================================== */

/* Top blade: rotate from diagonal (+45°) to horizontal = -45° rotation, shift up */
.menu-toggle:not(.active) .scissors-blade--a {
  transform: rotate(-45deg) translateY(-6px);
}

/* Bottom blade: rotate from diagonal (-45°) to horizontal = +45° rotation, shift down */
.menu-toggle:not(.active) .scissors-blade--b {
  transform: rotate(45deg) translateY(6px);
}

/* Hamburger middle line visible */
.menu-toggle:not(.active) .hamburger-middle {
  opacity: 1;
  transform: scaleX(1);
}

/* Handles hidden in hamburger state */
.menu-toggle:not(.active) .blade-handle {
  opacity: 0;
  transform: scale(0);
}

/* Hover: stagger shift on hamburger lines */
.menu-toggle:hover:not(.active) .scissors-blade--a {
  transform: rotate(-45deg) translateY(-6px) translateX(2px);
}

.menu-toggle:hover:not(.active) .hamburger-middle {
  transform: scaleX(1) translateX(2px);
  transition-delay: 40ms;
}

.menu-toggle:hover:not(.active) .scissors-blade--b {
  transform: rotate(45deg) translateY(6px) translateX(2px);
  transition-delay: 80ms;
}

/* ==========================================================================
   SCISSORS X STATE (Menu Open) - Natural X shape with visible handles
   ========================================================================== */

/* Blades in default X position (no transform needed - SVG is X-shaped) */
.menu-toggle.active .scissors-blade {
  transform: none;
}

/* Hamburger middle line hidden */
.menu-toggle.active .hamburger-middle {
  opacity: 0;
  transform: scaleX(0);
}

/* Handles visible with bounce animation */
.menu-toggle.active .blade-handle {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.2s ease-out 0.1s,
    transform 0.4s var(--ease-out-back) 0.15s;
}

/* Glow effect when active */
.menu-toggle.active .scissors-icon {
  filter: drop-shadow(0 0 6px rgba(236, 166, 81, 0.3));
}

/* ==========================================================================
   IDLE SNIP ANIMATION (Every ~10 seconds while menu is open)
   ========================================================================== */

@keyframes idleSnipA {
  0%, 92%, 100% {
    transform: rotate(0deg);
  }
  95% {
    transform: rotate(12deg);
  }
  97% {
    transform: rotate(-3deg);
  }
}

@keyframes idleSnipB {
  0%, 92%, 100% {
    transform: rotate(0deg);
  }
  95% {
    transform: rotate(-12deg);
  }
  97% {
    transform: rotate(3deg);
  }
}

/* Apply idle animation when menu is open */
.menu-toggle.active .scissors-blade--a {
  animation: idleSnipA 10s ease-in-out infinite;
}

.menu-toggle.active .scissors-blade--b {
  animation: idleSnipB 10s ease-in-out infinite;
}

/* ==========================================================================
   CLOSE SNIP ANIMATION (When clicking to close - with sound)
   ========================================================================== */

@keyframes closeSnipA {
  0% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(20deg);
  }
  60% {
    transform: rotate(25deg);
  }
  100% {
    transform: rotate(22deg);
  }
}

@keyframes closeSnipB {
  0% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-20deg);
  }
  60% {
    transform: rotate(-25deg);
  }
  100% {
    transform: rotate(-22deg);
  }
}

/* Closing state - triggered by JavaScript */
.menu-toggle.closing .scissors-blade--a {
  animation: closeSnipA 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.menu-toggle.closing .scissors-blade--b {
  animation: closeSnipB 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ==========================================================================
   HOVER STATES
   ========================================================================== */

/* Hover on scissors X: handles brighten */
.menu-toggle.active:hover .blade-handle {
  stroke: var(--color-white);
}

/* Hover on scissors X: trigger snip */
.menu-toggle.active:hover .scissors-blade--a {
  animation: idleSnipA 0.5s ease-in-out;
}

.menu-toggle.active:hover .scissors-blade--b {
  animation: idleSnipB 0.5s ease-in-out;
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .scissors-icon *,
  .menu-toggle {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--spacing-xl);
}

.hero-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: var(--fs-h5);
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s backwards;
}

/* Hero Slider - overlay content positioning (base styles in SCSS _hero-section.scss) */
.hero-overlay>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-height: 100%;
  width: 100%;
}

.hero-logo-plaque {
  max-width: min(500px, 90vw);
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  flex-shrink: 1;
}

.hero-cta {
  pointer-events: auto;
  /* Enable clicking on the CTA button */
  box-shadow: 0 4px 12px rgba(236, 166, 81, 0.3);
  flex-shrink: 0;
  white-space: nowrap;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(236, 166, 81, 0.4);
}

/* Hide slider dots */
.refinery-slider__dots {
  display: none !important;
}

/* Hero Section Styles */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-overlay-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 90%;
  max-height: 80vh;
  pointer-events: none;
  animation: fadeIn 1s ease 0.5s backwards;
}

.hero-overlay-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 600px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* Hero Slider Navigation */
.hero-slider-nav {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

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

.hero-dot:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Responsive adjustments for hero slider */
@media (max-width: 768px) {
  .hero-overlay-image {
    max-width: 80%;
    max-height: 60vh;
  }

  .hero-overlay-image img {
    max-width: 400px;
  }

  .hero-slider-nav {
    bottom: var(--spacing-lg);
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .hero-overlay-image img {
    max-width: 300px;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font-primary);
  font-size: var(--fs-button);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  min-width: 150px;
}

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

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

.btn-block {
  display: block;
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

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

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

.btn-white:hover {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

/* Button Press Feedback - Subtle scale on click */
.btn:active,
.button:active {
  transform: scale(0.97);
  transition: transform var(--duration-micro) ease-out;
}

.btn-primary:active,
.btn-secondary:active,
.btn-white:active {
  transform: scale(0.97) translateY(0);
}

/* ==========================================================================
   Image Gallery / Carousel
   ========================================================================== */
.gallery-section {
  padding: var(--spacing-3xl) 0;
  background-color: var(--color-black);
}

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

.gallery-track {
  display: flex;
  transition: transform var(--transition-slow);
  gap: var(--spacing-sm);
}

.gallery-slide {
  flex: 0 0 calc(100% / 3 - var(--spacing-sm));
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-slide:hover img {
  transform: scale(1.05);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--spacing-md);
  pointer-events: none;
  z-index: 10;
}

.gallery-nav button {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  font-size: 20px;
}

.gallery-nav button:hover {
  background-color: var(--color-accent);
  transform: scale(1.1);
}

/* ==========================================================================
   Reviews / Testimonials
   ========================================================================== */
.reviews-section {
  padding: var(--spacing-3xl) 0;
  background-color: var(--color-black);
}

.reviews-section .container {
  text-align: center;
}

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

.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  flex-wrap: wrap;
}

.aggregate-rating {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
}

.aggregate-stars {
  font-size: 1.25rem;
  color: var(--color-accent);
}

.aggregate-stars .empty {
  opacity: 0.3;
}

.aggregate-count {
  display: block;
  width: 100%;
  font-size: var(--fs-small);
  color: var(--color-off-white);
  margin-top: var(--spacing-xs);
}

/* ==========================================================================
   Reviews Section - Clean Slider Design
   ========================================================================== */
.reviews-section {
  background: var(--color-black);
  padding: var(--spacing-xl) 0;
  overflow: hidden;
}

.reviews-section h2 {
  font-family: var(--font-primary);
  font-size: var(--fs-h2);
  color: var(--color-white);
  text-align: center;
  margin-bottom: var(--spacing-md);
}

/* Slider Container */
.reviews-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* Progress Indicator */
.reviews-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.reviews-progress__bar {
  height: 100%;
  background: var(--color-accent);
  width: 0;
  transition: width 10s linear;
}

.reviews-progress__bar.active {
  width: 100%;
}

.reviews-slider.paused .reviews-progress__bar {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-progress__bar {
    transition: none;
  }
}

/* Viewport - auto height based on content */
.reviews-viewport {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  position: relative;
  width: 100%;
}

/* Review Slide - Fade transition */
.review-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 var(--spacing-sm);
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 1;
}

/* Active slide uses relative positioning to establish container height */
.review-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Quote Block */
.review-quote {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md) var(--spacing-sm);
  margin: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.review-quote p {
  font-size: 1em;
  font-style: italic;
  line-height: 1.2;
  color: var(--color-off-white);
  margin: 0 0 var(--spacing-md) 0;

}

.review-rating {
  color: var(--color-accent);
  font-size: 1.5rem;
  letter-spacing: 5px;
  margin-bottom: var(--spacing-sm);
}

.review-rating .star.empty {
  opacity: 0.3;
}

.review-quote footer {
  font-family: var(--font-primary);
  color: var(--color-white);
  font-size: var(--fs-h5);
  font-style: normal;
}

/* Reviews CTA positioning */
.reviews-cta {
  margin-top: var(--spacing-md);
}

/* Reviews Pagination Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.reviews-dot.active {
  background: var(--color-accent);
  transform: scale(1.25);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .review-slide {
    padding: 0;
  }

  .review-quote {
    padding: 0;
  }

  .review-quote p {
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   Service Cards
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.service-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background-color: rgba(236, 166, 81, 0.1);
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-content {
  padding: var(--spacing-lg);
}

.service-title {
  font-family: var(--font-primary);
  font-size: var(--fs-h4);
  margin-bottom: var(--spacing-sm);
  color: var(--color-accent);
}

.service-description {
  color: var(--color-off-white);
  line-height: 1.6;
}

/* ==========================================================================
   EVO Hair Care Section
   ========================================================================== */
.evo-section {
  background-color: var(--color-accent-dark);
  padding: var(--spacing-3xl) 0;
}

.evo-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  max-width: 900px;
  margin: 0 auto;
}

.evo-logo-wrapper {
  flex-shrink: 0;
}

.evo-logo {
  max-width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}

.evo-text {
  flex: 1;
}

.evo-text p {
  color: var(--color-off-white);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.evo-text p:last-child {
  margin-bottom: 0;
}

.evo-tagline {
  font-family: var(--font-primary);
  font-style: italic;
  color: var(--color-accent) !important;
  font-size: var(--fs-small);
  letter-spacing: 0.5px;
}

/* EVO Section Responsive */
@media (max-width: 768px) {
  .evo-content {
    flex-direction: column;
    text-align: center;
  }

  .evo-logo {
    max-width: 150px;
  }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  padding: var(--spacing-3xl) 0;
  background-color: var(--color-black);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.contact-info {
  padding: var(--spacing-lg);
}

.contact-info h3 {
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
}

.contact-item {
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.contact-icon {
  color: var(--color-accent);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-form {
  padding: var(--spacing-lg);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
}

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

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--color-off-white);
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-size: var(--fs-small);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  transition: all var(--transition-base);
}

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

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

/* ==========================================================================
   Footer
   ==========================================================================
   @deprecated 2.1.0 These footer styles will be removed in version 3.0.0.
   Use the new BEM-based SCSS components instead:
   - assets/scss/components/_footer.scss
   - assets/scss/components/_social-icon.scss

   Legacy classes maintained for backwards compatibility:
   - .footer-content → .site-footer__content
   - .footer-column → .site-footer__column
   - .footer-social → .site-footer__social
   - .footer-navigation → .site-footer__nav
   - .footer-menu → .site-footer__menu
   - .footer-bottom → .site-footer__bottom
   - .social-icon (unchanged, now in _social-icon.scss)
   ========================================================================== */
.site-footer {
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.footer-column h4 {
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
  margin-top: var(--spacing-md);
  font-family: var(--font-primary);
  font-size: var(--fs-h5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  margin-bottom: 1em;
}

.footer-column li {}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-base);
}

.footer-column a:hover {
  color: var(--color-white);
}

.footer-hours-note {
  font-size: 0.85em;
  color: var(--color-off-white);
  opacity: 0.8;
  margin-top: 0.5rem;
  font-style: italic;
}

.footer-building-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 4px;
  margin-bottom: var(--spacing-sm);
  transition: opacity var(--transition-base);
}

.footer-building-link:hover .footer-building-image {
  opacity: 0.9;
}

.footer-address-link {
  display: inline-block;
}

/* Footer Map Image */
.footer-map-link {
  display: block;
  margin-top: var(--spacing-md);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-base);
}

.footer-map-link:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.footer-map-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: var(--spacing-md);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

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

.social-icon:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
}

/* Footer Navigation Menu */
.footer-navigation {
  margin-top: var(--spacing-md);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs) var(--spacing-md);
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-small);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-menu a:hover {
  color: var(--color-white);
}

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

.footer-bottom .site-credit {
  margin-top: var(--spacing-xs);
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer-bottom .site-credit a {
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-bottom .site-credit a:hover {
  opacity: 0.8;
}

/* ==========================================================================
   WordPress Specific Styles
   ========================================================================== */

/* WordPress Core */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: var(--fs-small);
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Screen Reader Text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--color-white);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: var(--color-black);
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ==========================================================================
   Blog / Archive Styles
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.post-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.post-thumbnail {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.post-content {
  padding: var(--spacing-lg);
}

.post-meta {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  color: var(--color-accent);
  font-size: var(--fs-small);
}

.post-title {
  font-family: var(--font-primary);
  font-size: var(--fs-h4);
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
}

.post-excerpt {
  color: var(--color-off-white);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.read-more {
  color: var(--color-accent);
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Single Post */
.single-post {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-3xl) var(--container-padding);
}

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

.post-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: var(--spacing-md);
}

.post-header .post-meta {
  justify-content: center;
}

.post-featured-image {
  width: 100%;
  margin-bottom: var(--spacing-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  height: auto;
}

.entry-content {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--color-off-white);
}

.entry-content h2 {
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
}

.entry-content h3 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

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

.entry-content ul,
.entry-content ol {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.entry-content li {
  margin-bottom: var(--spacing-sm);
}

.entry-content blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
  font-style: italic;
  color: var(--color-off-white);
}

/* ==========================================================================
   WordPress Content Classes
   ========================================================================== */
.site-content {
  min-height: 70vh;
  padding-top: 56px;
  /* Account for fixed header */
}

.site-main {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--spacing-xl) var(--container-padding);
}

/* Service Archive - Full-width hero layout */
.service-archive.site-main {
  max-width: none;
  padding: 0;
}

.service-archive .service-archive-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--spacing-xl) var(--container-padding);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease;
}

.fade-in-up {
  animation: fadeInUp 1s ease;
}

.fade-in-down {
  animation: fadeInDown 1s ease;
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */

/* Base reveal - elements fade up as they enter viewport */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-base) var(--ease-smooth),
    transform var(--duration-base) var(--ease-smooth);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for child elements */
[data-reveal-stagger]>* {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity var(--duration-base) var(--ease-smooth),
    transform var(--duration-base) var(--ease-smooth);
}

[data-reveal-stagger].is-visible>*:nth-child(1) {
  transition-delay: 0ms;
}

[data-reveal-stagger].is-visible>*:nth-child(2) {
  transition-delay: 80ms;
}

[data-reveal-stagger].is-visible>*:nth-child(3) {
  transition-delay: 160ms;
}

[data-reveal-stagger].is-visible>*:nth-child(4) {
  transition-delay: 240ms;
}

[data-reveal-stagger].is-visible>*:nth-child(5) {
  transition-delay: 320ms;
}

[data-reveal-stagger].is-visible>*:nth-child(6) {
  transition-delay: 400ms;
}

[data-reveal-stagger].is-visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  [data-reveal],
  [data-reveal-stagger]>* {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Enhanced Focus States
   ========================================================================== */

/* Visible focus for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

button:focus-visible,
.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Remove focus outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Smooth scroll with reduced motion respect */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  :root {
    --fs-h1: 36px;
    --fs-h2: 28px;
    --fs-h3: 24px;
    --fs-h4: 20px;
    --spacing-3xl: 60px;
  }

  .gallery-slide {
    flex: 0 0 calc(50% - var(--spacing-sm));
  }

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

/* Small Desktop / Large Tablet (1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {

  /* Hero logo - scale down for awkward middle range */
  .hero-logo-plaque {
    max-width: min(380px, 40vw);
    max-height: 220px;
  }

  .hero-cta {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
  }
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {

  /* Hero overlay - medium size for tablets */
  .hero-overlay {
    padding: 1.5rem 1rem;
  }

  .hero-logo-plaque {
    max-width: min(280px, 50vw);
    max-height: 180px;
  }

  .hero-cta {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }

  /* Override plugin's tablet height */
  .hero-slider-wrapper .refinery-slider__track {
    height: 100% !important;
  }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
  :root {
    --fs-h1: 32px;
    --fs-h2: 24px;
    --fs-h3: 20px;
    --fs-h4: 18px;
    --spacing-3xl: 40px;
    --container-padding: 15px;
  }

  /* Transparent header on mobile - hero content visible underneath */
  .site-header {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
  }

  /* Scrolled state - opaque with blur */
  .site-header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(236, 166, 81, 0.1);
  }

  /* Mobile Navigation */
  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .header-cta {
    display: none;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    /* Dynamic viewport height for mobile browsers */
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: calc(70px + env(safe-area-inset-top, 0px)) 2rem calc(20px + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
  }

  .main-navigation.active {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    gap: 0.625rem;
    padding: 0;
    width: 100%;
  }

  .nav-menu li {
    width: 100%;
    max-width: 280px;
    border-bottom: none;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  /* Mobile nav links styled as ghost buttons (CSS-only, no class needed) */
  .nav-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0.625rem 1.25rem;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    color: var(--color-white);
    background-color: transparent;
    border: 1px solid rgba(236, 166, 81, 0.5);
    border-radius: 4px;
    transition: all 0.2s ease;
  }

  /* Hide underline pseudo-element on mobile */
  .nav-menu a::after {
    display: none;
  }

  /* Hover state for mobile nav */
  .nav-menu a:hover,
  .nav-menu a:focus {
    background-color: rgba(236, 166, 81, 0.1);
    border-color: var(--color-accent);
  }

  /* Current page active state for mobile nav */
  .nav-menu .current-menu-item > a {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-off-white);
  }

  /* Mobile Menu Footer - CTA, Contact & Social at bottom */
  .mobile-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 280px;
    margin-top: auto;
    padding-top: 1.5rem;
  }

  /* Mobile Menu CTA - Book Now above contact */
  .mobile-menu-cta {
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
  }

  .mobile-menu-cta .btn {
    width: 100%;
  }

  /* Contact Info Section */
  .mobile-menu-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
  }

  .mobile-menu-contact-item {
    display: flex;
    gap: 0.625rem;
    color: var(--color-off-white);
    font-size: 0.8125rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .mobile-menu-contact-item:hover,
  .mobile-menu-contact-item:focus {
    color: var(--color-accent);
  }

  .mobile-menu-contact-item svg {
    flex-shrink: 0;
    stroke: currentColor;
    width: 16px;
    height: 16px;
  }

  .mobile-menu-contact-item span {
    line-height: 1.4;
  }

  /* Social Icons Section - uses .social-icon component from design system */
  .mobile-menu-social {
    margin-top: 1.5rem;
    padding: 0.75rem 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* ========================================================================
     Mobile Footer - Centered Layout
     ======================================================================== */
  .footer-content {
    text-align: center;
  }

  .footer-column {
    text-align: center;
    align-items: center;
  }

  .footer-column h4:first-child {
    margin-top: 0;
  }

  .footer-social,
  .site-footer__social,
  .site-footer__social.social-icon-list {
    justify-content: center !important;
    width: 100%;
  }

  .footer-menu,
  .site-footer__menu {
    justify-content: center !important;
  }

  .footer-navigation,
  .site-footer__nav {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-map-link {
    margin-left: auto;
    margin-right: auto;
    max-width: 280px;
  }

  .hero-content {
    padding: var(--spacing-md);
  }

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

  /* Hero Slider and Overlay Responsive */
  .hero-slider-wrapper {
    display: block;
    aspect-ratio: 16 / 9;
    /* Taller ratio on mobile for more vertical space */
  }

  /* Override plugin's mobile heights (500px and 400px) */
  .hero-slider-wrapper .refinery-slider__track {
    height: 100% !important;
  }

  .hero-overlay {
    padding: 0.2rem 0rem;
    position: relative;
    display: block;
  }

  .hero-logo-plaque {
    max-width: min(280px, 80vw);
    max-height: 200px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Card buttons should stay inline, not full-width */
  .team-member-card__cta.btn,
  .service-card__cta.btn {
    width: auto;
    max-width: none;
  }

  /* Gallery */
  .gallery-slide {
    flex: 0 0 100%;
  }

  .gallery-slide img {
    height: 300px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-map-link {
    max-width: 200px;
    margin: var(--spacing-md) auto 0;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Reviews */
  .review-card {
    padding: var(--spacing-md);
  }

  .review-header {
    flex-direction: column;
  }

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

/* Extra small devices (< 480px) */
@media (max-width: 480px) {
  :root {
    --fs-body: 14px;
    --fs-button: 13px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-overlay {
    padding: 0.2rem 0rem;
  }

  .hero-logo-plaque {
    max-width: min(220px, 75vw);
    max-height: 150px;
  }

  /* Override plugin's small mobile height (400px) */
  .hero-slider-wrapper .refinery-slider__track {
    height: 100% !important;
  }

  .section {
    padding: var(--spacing-xl) 0;
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {

  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

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

.bg-accent {
  background-color: var(--color-accent);
}

.bg-dark {
  background-color: var(--color-black);
}

.mt-0 {
  margin-top: 0;
}

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

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

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

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

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

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

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

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

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

.pt-0 {
  padding-top: 0;
}

.pt-sm {
  padding-top: var(--spacing-sm);
}

.pt-md {
  padding-top: var(--spacing-md);
}

.pt-lg {
  padding-top: var(--spacing-lg);
}

.pt-xl {
  padding-top: var(--spacing-xl);
}

.pb-0 {
  padding-bottom: 0;
}

.pb-sm {
  padding-bottom: var(--spacing-sm);
}

.pb-md {
  padding-bottom: var(--spacing-md);
}

.pb-lg {
  padding-bottom: var(--spacing-lg);
}

.pb-xl {
  padding-bottom: var(--spacing-xl);
}

/* ==========================================================================
   Stylist Showcase Section
   ========================================================================== */
.stylist-showcase {
  background-color: var(--color-black);
  padding: var(--spacing-2xl) 0;
}

.stylist-showcase h2 {
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
}

.showcase-cta {
  margin-top: var(--spacing-md);
}

/* Back to Top Button - Moved to assets/scss/components/_back-to-top.scss */