/* ==========================================================================
   Ink Harbor Tattoo Studio - Premium Styling
   Design System: Luxury Obsidian Black & Brass Gold
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette (HSL System) */
  --bg-primary: hsl(220, 16%, 5%);       /* Obsidian / Deepest Black */
  --bg-secondary: hsl(220, 12%, 8%);     /* Deep Charcoal */
  --bg-tertiary: hsl(220, 10%, 13%);     /* Card Slate Background */
  --bg-glass: hsla(220, 12%, 8%, 0.75);  /* Glassmorphic fill */
  
  --text-primary: hsl(0, 0%, 96%);       /* Clear Silver White */
  --text-secondary: hsl(220, 7%, 75%);   /* Muted Gray */
  --text-muted: hsl(220, 5%, 55%);       /* Dark Muted Gray */
  
  --accent: hsl(45, 60%, 53%);           /* Brass Gold (#c5a059-ish) */
  --accent-hover: hsl(45, 75%, 62%);     /* Vivid Bright Gold */
  --accent-glow: hsla(45, 60%, 53%, 0.15); /* Soft ambient gold glow */
  --accent-glow-strong: hsla(45, 60%, 53%, 0.4);
  
  --border-color: hsla(220, 8%, 20%, 0.5); /* Subtle dark border */
  --border-gold: hsla(45, 60%, 53%, 0.25);  /* Muted gold border */
  --border-gold-focus: hsla(45, 60%, 53%, 0.8);
  
  /* Fonts */
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout Constants */
  --max-width: 1200px;
  --header-height: 80px;
  --header-height-mobile: 70px;
  --notice-height: 38px;
  
  /* Transitions & FX */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-in-out;
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 4px 20px -2px var(--accent-glow);
}

/* ==========================================================================
   1. Reset & Global Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  scroll-padding-top: calc(var(--header-height) + var(--notice-height) + 15px);
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 0; /* Updated dynamically on mobile for sticky call bar */
}

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

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

button, input, textarea {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 2px solid var(--bg-primary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

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

.section {
  padding: 6rem 0;
  position: relative;
}

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

.section-title-wrap {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent);
}

/* Gold badging for styles, hours etc. */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: hsla(45, 60%, 53%, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  margin: 0.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 6px 25px -1px var(--accent-glow-strong);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: hsla(45, 60%, 53%, 0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Premium Card (Glassmorphic) */
.card {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: var(--transition-smooth);
  transform-origin: center;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.9), 0 0 15px -3px var(--accent-glow);
}

.card:hover::before {
  transform: scaleX(1);
}

/* ==========================================================================
   3. Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: var(--notice-height);
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.scrolled {
  height: 70px;
  background-color: hsl(220, 16%, 3%);
  border-bottom-color: var(--border-gold);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.logo-img {
  height: 52px;
  width: auto;
  border-radius: 4px;
  border: 1px solid hsla(45, 60%, 53%, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
  height: 45px;
}

.logo-text {
  display: none; /* The correct logo image already contains the full styled typography 'Ink Harbor Tattoo Studio' */
}

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--bg-primary);
  background-color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  box-shadow: var(--shadow-gold);
}

.header-phone:hover {
  background-color: var(--accent-hover);
  color: var(--bg-primary);
  transform: translateY(-1px);
}

/* Hamburger toggle for mobile */
.nav-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hamburger transformation when active */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--accent);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--accent);
}

/* Space out content below fixed header */
main {
  margin-top: calc(var(--header-height) + var(--notice-height));
}

/* ==========================================================================
   4. Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, hsla(220, 16%, 5%, 0.85) 0%, hsla(220, 16%, 5%, 0.95) 100%), 
                    url('../../images/ink-harbor-exterior.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 700px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-title span {
  color: var(--accent);
  display: block;
  font-size: 2.75rem;
  margin-top: 0.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 600px;
}

/* ==========================================================================
   5. Home Page Components
   ========================================================================== */

/* Intro Section */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

.intro-photo-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.intro-photo-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent);
  transform: translate(12px, 12px);
  border-radius: 8px;
  z-index: -1;
  transition: var(--transition-smooth);
}

.intro-photo-frame:hover::after {
  transform: translate(6px, 6px);
}

/* Artist Preview Grid */
.artist-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.artist-preview-card {
  text-align: center;
}

.artist-card-img-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

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

.artist-preview-card:hover .artist-card-img {
  transform: scale(1.05);
}

.artist-card-content {
  padding: 1.5rem;
}

.artist-card-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.artist-card-styles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

.artist-card-availability {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
}

/* Portfolio Preview Grid */
.portfolio-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.portfolio-preview-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

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

.portfolio-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-preview-card:hover .portfolio-preview-img {
  transform: scale(1.05);
}

.portfolio-preview-card:hover .portfolio-preview-overlay {
  opacity: 1;
}

.portfolio-overlay-title {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.portfolio-overlay-subtitle {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portfolio-preview-btn-wrap {
  text-align: center;
}

/* Booking Banner CTA */
.booking-cta-wrap {
  background-image: linear-gradient(135deg, hsl(220, 12%, 10%) 0%, hsl(220, 16%, 4%) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 4rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.booking-cta-wrap::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, hsla(45, 60%, 53%, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.booking-cta-content {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.booking-cta-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.booking-cta-text {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

/* Location Summary Block */
.location-summary-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.summary-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem;
}

.summary-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.summary-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed hsla(220, 5%, 25%, 0.3);
  font-size: 0.9rem;
}

.summary-hours-list li:last-child {
  border-bottom: none;
}

.summary-hours-list .day {
  font-weight: 500;
  color: var(--text-primary);
}

.summary-hours-list .time {
  color: var(--text-secondary);
}

.summary-hours-list .closed {
  color: var(--accent);
  font-weight: 500;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.summary-item {
  display: flex;
  gap: 1rem;
}

.summary-item-icon {
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.summary-item-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.summary-item-text {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 300;
}

/* ==========================================================================
   6. Artists Page Components
   ========================================================================== */
.artists-grid {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.artist-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.artist-row:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
}

.artist-row:nth-child(even) .artist-info-col {
  grid-column: 1;
  grid-row: 1;
}

.artist-row:nth-child(even) .artist-image-col {
  grid-column: 2;
  grid-row: 1;
}

.artist-image-frame {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  position: relative;
}

.artist-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.artist-image-frame:hover img {
  transform: scale(1.03);
}

.artist-info-col h2 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.artist-info-col h2 span {
  color: var(--accent);
}

.artist-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.artist-meta-availability {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.artist-styles-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.artist-bio-section {
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border-gold);
}

.artist-bio-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.artist-bio-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}

.artist-booking-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.5rem;
}

.artist-booking-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.artist-booking-method {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* ==========================================================================
   7. Portfolio Page Components
   ========================================================================== */
.portfolio-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  background-color: var(--bg-secondary);
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  border-color: var(--border-gold);
  color: var(--text-primary);
}

.filter-btn.active {
  background-color: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  box-shadow: var(--shadow-gold);
}

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

.gallery-item {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition-smooth);
}

/* Filter animations */
.gallery-item.hidden {
  display: none;
}

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 30px -5px rgba(0,0,0,0.9), 0 0 15px -3px var(--accent-glow-strong);
}

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

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

.gallery-item-title {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
}

.gallery-item-artist {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 7, 8, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.lightbox-content-wrap {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

.lightbox-caption-wrap {
  width: 100%;
  text-align: center;
  padding-top: 1rem;
}

.lightbox-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
}

.lightbox-artist {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent);
}

/* ==========================================================================
   8. Booking Page Components
   ========================================================================== */
.booking-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
}

.booking-intro-text {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.booking-step-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.booking-step {
  display: flex;
  gap: 1.5rem;
}

.booking-step-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-step-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.booking-step-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

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

.policy-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 2rem;
}

.policy-card-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.booking-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.aside-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem;
}

.aside-box-title {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.aside-box-gold {
  border-color: var(--accent);
  background-image: linear-gradient(180deg, var(--bg-secondary) 0%, hsl(220, 12%, 6%) 100%);
}

.aside-box-gold .aside-box-title {
  border-bottom-color: var(--border-gold);
  color: var(--accent);
}

.aside-policy-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.aside-policy-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.aside-policy-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.pdf-download-card {
  text-align: center;
}

.pdf-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pdf-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.pdf-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   9. Aftercare Page Components
   ========================================================================== */
.aftercare-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
}

.aftercare-guide h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.aftercare-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
}

.aftercare-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 20px;
  width: 1px;
  height: calc(100% - 40px);
  background-color: var(--border-color);
  z-index: 1;
}

.timeline-node {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: bold;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.timeline-content {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.5rem;
  width: 100%;
}

.timeline-content-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.timeline-content-list {
  padding-left: 1.25rem;
  list-style-type: disc;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.timeline-content-list li {
  margin-bottom: 0.5rem;
}

.aftercare-warning-box {
  background-color: hsla(0, 70%, 40%, 0.08);
  border: 1px solid hsla(0, 70%, 40%, 0.3);
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 3.5rem;
}

.aftercare-warning-title {
  font-size: 1.2rem;
  color: hsl(0, 85%, 65%);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.aftercare-warning-list {
  padding-left: 1.25rem;
  list-style-type: square;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.aftercare-warning-list li {
  margin-bottom: 0.5rem;
}

.sanitation-card {
  background-image: linear-gradient(180deg, var(--bg-secondary) 0%, hsl(220, 12%, 6%) 100%);
  border: 1px solid var(--border-gold);
}

.sanitation-title {
  color: var(--accent);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.sanitation-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   10. Contact Page Components
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

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

.contact-block h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  font-size: 1.05rem;
}

.contact-detail-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

.policy-note {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.parking-info {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.social-connect-list {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.social-badge-link:hover {
  border-color: var(--accent);
  background-color: hsla(45, 60%, 53%, 0.05);
  transform: translateY(-2px);
}

.social-badge-icon {
  color: var(--accent);
}

/* Map Embed styling */
.map-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}

.map-wrapper {
  flex-grow: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  min-height: 450px;
  background-color: var(--bg-secondary);
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(1.2); /* Gorgeous dark-mode styling for google map! */
}

/* ==========================================================================
   11. Footer Section
   ========================================================================== */
.footer {
  background-color: hsl(220, 16%, 3%);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 3rem 0;
}

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

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.footer-nav-col h4, .footer-contact-col h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

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

.footer-nav-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-nav-link:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
}

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

.footer-contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   12. Sticky Mobile Actions Bar
   ========================================================================== */
.mobile-actions-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  z-index: 999;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

.mobile-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.mobile-action-btn:first-child {
  border-right: 1px solid var(--border-color);
}

.mobile-action-btn-accent {
  background-color: var(--accent);
  color: var(--bg-primary);
}

.mobile-action-btn-accent:hover {
  background-color: var(--accent-hover);
}

/* ==========================================================================
   13. Responsive Media Queries
   ========================================================================== */

/* Tablet & Mobile Views */
@media (max-width: 992px) {
  .section {
    padding: 4rem 0;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .intro-photo-frame {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .location-summary-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .artist-row, .artist-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .artist-row:nth-child(even) .artist-info-col {
    grid-column: auto;
    grid-row: auto;
  }
  
  .artist-row:nth-child(even) .artist-image-col {
    grid-column: auto;
    grid-row: auto;
  }
  
  .artist-image-frame img {
    height: 380px;
  }
  
  .booking-layout, .aftercare-layout, .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .booking-aside, .map-col {
    height: auto;
  }
  
  .map-wrapper {
    min-height: 350px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

/* Mobile Specific Views */
@media (max-width: 768px) {
  :root {
    --notice-height: 56px;
  }

  html {
    scroll-padding-top: calc(var(--header-height-mobile) + var(--notice-height) + 15px);
  }

  body {
    padding-bottom: 60px; /* Leave space for mobile-actions-bar */
  }
  
  .nav-menu {
    position: fixed;
    top: calc(var(--header-height-mobile) + var(--notice-height));
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height-mobile) - var(--notice-height));
    background-color: var(--bg-secondary);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 1050;
    overflow-y: auto;
    border-top: 1px solid var(--border-color);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.15rem;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .header-phone {
    display: none; /* Prominent call is now in sticky mobile footer bar */
  }
  
  .mobile-actions-bar {
    display: grid;
  }
  
  .header {
    height: var(--header-height-mobile);
  }
  
  main {
    margin-top: calc(var(--header-height-mobile) + var(--notice-height));
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-title span {
    font-size: 1.75rem;
  }
  
  .hero-sub {
    font-size: 0.95rem;
  }
  
  .booking-cta-wrap {
    padding: 2.5rem 1.5rem;
  }
  
  .booking-cta-title {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
}

/* ==========================================================================
   Notice Bar and Demonstration Custom Styles
   ========================================================================== */
.rva-notice-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--notice-height);
  background-color: var(--accent);
  color: #111112;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  padding: 8px 16px;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.rva-notice-bar a {
  color: #111112;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 4px;
}

.rva-notice-bar a:hover {
  color: #000;
  text-decoration: none;
}

@media (max-width: 480px) {
  :root {
    --notice-height: 74px;
  }
}
