/* ==========================================================================
   Prism & Pine Hair Studio Design System
   ========================================================================== */

:root {
  /* Color Palette */
  --color-pine-primary: #1E3F30;     /* Deep forest pine green (warm & premium) */
  --color-pine-secondary: #2D5643;   /* Lighter pine green */
  --color-pine-dark: #12281E;        /* Darkest forest green */
  --color-gold: #4E8C73;             /* Polished Cool Sage-Emerald (replacing Tan/Gold) */
  --color-gold-hover: #3D725C;       /* Cool Sage-Emerald hover state */
  --color-gold-light: #E8F0EC;       /* Extremely light cool mint-green */
  --color-linen: #F3F5F4;            /* Soft cool off-white background (replacing Linen) */
  --color-white: #FFFFFF;
  --color-dark: #1F2937;             /* Clean modern cool slate-900 */
  --color-muted: #4B5563;            /* Modern cool slate-600 */
  --color-border: #E5E7EB;           /* Soft slate-200 border */
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', Helvetica, Arial, sans-serif;
  
  /* Shadows & Layout */
  --shadow-sm: 0 2px 4px rgba(30, 63, 48, 0.05);
  --shadow-md: 0 10px 30px rgba(30, 63, 48, 0.08);
  --shadow-lg: 0 20px 40px rgba(30, 63, 48, 0.12);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --border-radius: 12px;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-linen);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.w-full { width: 100%; }
.font-semibold { font-weight: 600; }

/* Section Layout & Grid Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

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

.section-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-pine-primary);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  font-weight: 400;
}

.section-subtext {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   Buttons System
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
}

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

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

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

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 0.95rem;
}

.btn-xl {
  padding: 1.25rem 2.75rem;
  font-size: 1rem;
  letter-spacing: 0.15em;
  box-shadow: 0 10px 25px rgba(30, 63, 48, 0.25);
}

.icon-left {
  margin-right: 0.75rem;
  font-size: 1.1em;
}

/* ==========================================================================
   Sticky Header & Navigation
   ========================================================================== */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(30, 63, 48, 0.92); /* Rich dark pine */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.15); /* Soft gold accent border */
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  padding: 0.4rem 0;
  background-color: rgba(18, 40, 30, 0.98);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo {
  height: 42px;
  width: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.brand-name:hover {
  color: var(--color-gold);
}

.desktop-nav ul {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-white);
}

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

.nav-link.active {
  color: var(--color-gold);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

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

/* Header Responsive styling */
@media (max-width: 1024px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ==========================================================================
   Mobile Overlay Navigation Menu
   ========================================================================== */

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-pine-dark);
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  text-align: center;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.active .mobile-nav {
  transform: translateY(0);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  display: inline-block;
}

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

.mobile-nav-cta {
  margin-top: 1.5rem;
  padding: 0 2rem;
}

/* ==========================================================================
   1. Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Header space */
  overflow: hidden;
  background-color: var(--color-pine-dark);
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

/* Opacity overlay removed completely to show storefront image in full quality */
.hero-overlay {
  display: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Beautiful Opaque Content Box / Card Overlay */
.hero-content {
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.98); /* Opaque high-end white card */
  padding: 3.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  border-left: 6px solid var(--color-pine-primary); /* Bold brand accent strip */
  animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold); /* Sage-emerald accent */
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--color-pine-primary); /* Deep pine green for readability */
}

.hero-subheadline {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-dark); /* Slate-900 */
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.hero-intro {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-muted); /* Slate-600 */
  margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-content {
    padding: 2rem 1.5rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subheadline {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
}

/* ==========================================================================
   2. Services Section
   ========================================================================== */

.services-section {
  background-color: var(--color-linen);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-category-card {
  background-color: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

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

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.25rem;
}

.category-icon-wrapper {
  background-color: var(--color-gold-light);
  color: var(--color-pine-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.category-title {
  font-size: 1.35rem;
  color: var(--color-pine-primary);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-item {
  position: relative;
}

.service-title-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
}

.service-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
}

.service-description {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.4;
}

/* Info Box / Consultation disclaimer */
.services-info-box {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-gold);
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
}

.services-info-box .info-content {
  display: flex;
  gap: 1.25rem;
}

.info-icon {
  color: var(--color-gold);
  font-size: 1.5rem;
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.info-text {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.services-download-wrapper {
  margin-top: 2rem;
}

/* ==========================================================================
   3. Team Section
   ========================================================================== */

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background-color: var(--color-linen);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
  background-color: var(--color-white);
}

.team-avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--color-gold-light);
  color: var(--color-pine-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem auto;
  border: 2px solid var(--color-gold);
  transition: var(--transition-smooth);
}

.team-card:hover .team-avatar-placeholder {
  background: var(--color-pine-primary);
  color: var(--color-white);
}

.team-name {
  font-size: 1.25rem;
  color: var(--color-pine-primary);
  margin-bottom: 0.25rem;
}

.team-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.team-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.specialty-badge {
  background-color: var(--color-gold-light);
  color: var(--color-pine-primary);
  font-size: 0.725rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-weight: 500;
}

/* ==========================================================================
   4. Gallery Section
   ========================================================================== */

.gallery-section {
  background-color: var(--color-linen);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 63, 48, 0.9); /* Deep forest green translucent */
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

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

.overlay-content {
  width: 100%;
  color: var(--color-white);
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

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

.look-category {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.look-title {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.zoom-icon {
  font-size: 1.25rem;
  color: var(--color-gold);
}

/* ==========================================================================
   5. About Section
   ========================================================================== */

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

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--color-pine-primary);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--color-gold);
}

.exp-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.exp-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

@media (max-width: 576px) {
  .about-experience-badge {
    bottom: -10px;
    right: -10px;
    padding: 1rem 1.25rem;
  }
  
  .exp-number {
    font-size: 1.6rem;
  }
}

.about-paragraphs {
  margin-bottom: 2rem;
}

.lead-text {
  font-size: 1.15rem;
  color: var(--color-pine-primary);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.about-paragraphs p:not(.lead-text) {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.gift-card-box {
  background-color: var(--color-linen);
  padding: 1.75rem;
  border-radius: var(--border-radius);
  border: 1px dashed var(--color-gold);
  display: flex;
  gap: 1.25rem;
}

.gift-card-icon {
  color: var(--color-gold);
  font-size: 1.75rem;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.gift-card-text h4 {
  font-size: 1.1rem;
  color: var(--color-pine-primary);
  margin-bottom: 0.4rem;
}

.gift-card-text p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ==========================================================================
   6. Booking Section
   ========================================================================== */

.booking-section {
  position: relative;
  background-color: var(--color-pine-dark);
  color: var(--color-white);
  overflow: hidden;
  padding: 8rem 0;
}

.booking-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.booking-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 40, 30, 0.85);
  z-index: 1;
}

.booking-container {
  position: relative;
  z-index: 2;
}

.booking-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(30, 63, 48, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(197, 168, 128, 0.2);
  padding: 4rem 3rem;
  border-radius: var(--border-radius);
}

@media (max-width: 768px) {
  .booking-card {
    padding: 2.5rem 1.5rem;
  }
}

.booking-card .section-title {
  margin-bottom: 1.5rem;
}

.sage-tag {
  color: var(--color-gold);
}

.text-white {
  color: var(--color-white) !important;
}

.booking-copy {
  margin-bottom: 2.5rem;
}

.booking-copy .lead-text {
  color: var(--color-white);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.booking-policy-box {
  background-color: rgba(18, 40, 30, 0.6);
  border: 1px solid rgba(197, 168, 128, 0.15);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  text-align: left;
}

.policy-title {
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.policy-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.booking-action {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   7. Hours Section
   ========================================================================== */

.hours-section {
  background-color: var(--color-linen);
}

.hours-container-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .hours-container-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.hours-visual {
  position: relative;
}

.hours-img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.status-indicator-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--color-pine-primary);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--color-gold);
  font-size: 0.8rem;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E2E8F0;
  display: inline-block;
}

.status-dot.open {
  background-color: #4ADE80;
  box-shadow: 0 0 8px #4ADE80;
  animation: pulse-dot 2s infinite;
}

.status-dot.closed {
  background-color: #F87171;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hours-table-wrapper {
  background-color: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

@media (max-width: 576px) {
  .hours-table-wrapper {
    padding: 2rem 1.25rem;
  }
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.hours-table th {
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-pine-primary);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 1rem;
}

.hours-table td {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-dark);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-muted);
}

.hours-table tr.active-day {
  background-color: var(--color-gold-light);
}

.hours-table tr.active-day td {
  color: var(--color-pine-primary) !important;
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.badge-closed {
  background-color: #FEE2E2;
  color: #EF4444;
}

.holiday-note-box {
  background-color: var(--color-linen);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
}

.note-icon {
  color: var(--color-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.note-text {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.4;
}

/* ==========================================================================
   8. Location & Contact Section
   ========================================================================== */

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

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info-col {
  display: flex;
  flex-direction: column;
}

.contact-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-logo {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
}

.contact-brand h3 {
  font-size: 1.6rem;
  color: var(--color-pine-primary);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method-card {
  display: flex;
  gap: 1.25rem;
}

.method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-gold-light);
  color: var(--color-pine-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.method-details h4 {
  font-size: 1.05rem;
  color: var(--color-pine-primary);
  margin-bottom: 0.4rem;
}

.method-details p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.method-link {
  font-size: 0.9rem;
  color: var(--color-gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.method-link:hover {
  color: var(--color-pine-primary);
}

/* Connect Column Right side */
.contact-connect-col {
  display: flex;
}

.connect-card {
  background-color: var(--color-linen);
  padding: 3rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  width: 100%;
}

@media (max-width: 576px) {
  .connect-card {
    padding: 2rem 1.25rem;
  }
}

.connect-card h4 {
  font-size: 1.4rem;
  color: var(--color-pine-primary);
  margin-bottom: 1rem;
}

.connect-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.social-connect-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-connect-btn {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.9rem 1.25rem;
  transition: var(--transition-smooth);
}

.social-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-right: 1rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.social-btn-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark);
}

/* Connect specific colors */
.vagaro-btn .social-icon-box { background-color: var(--color-gold); }
.instagram-btn .social-icon-box { background-image: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.facebook-btn .social-icon-box { background-color: #1877F2; }
.google-btn .social-icon-box { background-color: #EA4335; }

.social-connect-btn:hover {
  transform: translateX(5px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   9. Parking Section
   ========================================================================== */

.parking-section {
  background-color: var(--color-linen);
  padding: 4rem 0;
}

.parking-card-box {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--color-pine-primary);
  color: var(--color-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-gold);
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .parking-card-box {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
}

.parking-icon-side {
  color: var(--color-gold);
  font-size: 4rem;
  line-height: 1;
  flex-shrink: 0;
}

.parking-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.parking-title {
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.parking-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   10. Footer Section
   ========================================================================== */

.site-footer {
  background-color: var(--color-pine-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 46px;
  width: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
}

.footer-tagline {
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  max-width: 320px;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.footer-social-icons a:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-links-col h4,
.footer-hours-col h4 {
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-list a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.footer-hours-list li span:first-child {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  display: flex;
  justify-content: center;
}

.copyright-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Interactive Lightbox Modal
   ========================================================================== */

.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 40, 30, 0.96); /* Deep pine black translucency */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: none; /* Controlled via JS */
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 3rem;
  color: var(--color-white);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2010;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-gold);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 63, 48, 0.5);
  border: 1px solid rgba(197, 168, 128, 0.2);
  color: var(--color-white);
  padding: 1.25rem 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2010;
  transition: var(--transition-fast);
  border-radius: 4px;
}

.lightbox-nav:hover {
  background: var(--color-gold);
  color: var(--color-pine-dark);
}

.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }

@media (max-width: 768px) {
  .lightbox-nav {
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 2.2rem;
  }
}

.lightbox-content {
  max-width: 80%;
  max-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  border: 1px solid rgba(197, 168, 128, 0.3);
}

.lightbox-caption {
  text-align: center;
  color: var(--color-white);
  margin-top: 1.5rem;
  max-width: 600px;
}

.lightbox-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.25rem;
}

.lightbox-title {
  font-size: 1.25rem;
  font-weight: 400;
}

/* Horizontal social connect buttons styling */
.contact-social-connect {
  margin-top: 2rem;
}

.social-connect-list-row {
  display: flex;
  gap: 1rem;
}

.social-connect-btn-sm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.social-connect-btn-sm:hover {
  transform: translateY(-3px);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

/* Hover color states */
.social-connect-btn-sm.vagaro-btn:hover { background-color: var(--color-gold); }
.social-connect-btn-sm.instagram-btn:hover { background-image: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-connect-btn-sm.facebook-btn:hover { background-color: #1877F2; }

/* Google Map Embed Column */
.contact-map-col {
  width: 100%;
  height: 100%;
  display: flex;
}

/* Sliding Header utility bar click to call */
.top-utility-bar {
  background-color: var(--color-pine-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.725rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-smooth);
}

.top-utility-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.35rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-utility-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-utility-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-gold); /* Sage-emerald */
}

.top-utility-phone:hover {
  color: var(--color-white);
}

/* Slide it up and hide it smoothly when header is scrolled */
.main-header.scrolled .top-utility-bar {
  margin-top: -30px;
  opacity: 0;
  pointer-events: none;
}

/* --- RVA Sites Notice Bar --- */
.rva-notice-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background-color: var(--color-pine-primary, #1E3F30);
  color: var(--color-white, #FFFFFF);
  border-bottom: 2px solid var(--color-gold, #4E8C73);
  font-size: 0.85rem;
  padding: 8px 16px;
  text-align: center;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.rva-notice-bar a {
  color: var(--color-gold, #4E8C73);
  text-decoration: underline;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition-fast, all 0.2s ease);
}

.rva-notice-bar a:hover {
  color: var(--color-white, #FFFFFF);
}

/* Adjust header to sit below fixed notice bar */
.main-header {
  top: 36px !important;
}

@media (max-width: 1024px) {
  .main-header {
    top: 56px !important;
  }
  .mobile-nav-overlay {
    top: calc(80px + 56px) !important;
    height: calc(100vh - 80px - 56px) !important;
  }
}

@media (max-width: 480px) {
  .main-header {
    top: 76px !important;
  }
  .mobile-nav-overlay {
    top: calc(80px + 76px) !important;
    height: calc(100vh - 80px - 76px) !important;
  }
}

/* Section scroll offset correction due to notice bar + header */
section[id] {
  scroll-margin-top: 116px !important; /* 80px header + 36px notice bar */
}

@media (max-width: 1024px) {
  section[id] {
    scroll-margin-top: 136px !important; /* 80px header + 56px notice bar */
  }
}

@media (max-width: 480px) {
  section[id] {
    scroll-margin-top: 156px !important; /* 80px header + 76px notice bar */
  }
}

/* Location details note */
.demo-location-note {
  font-size: 0.825rem !important;
  color: var(--color-muted, #4B5563) !important;
  font-style: italic;
  font-weight: 400 !important;
  margin-top: 0.35rem;
  line-height: 1.4;
  display: block;
}

