/* ============================================
   TRADITIONS PILSEN - MAIN STYLESHEET
   Premium Barbershop Website
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================ */
:root {
  /* Brand Colors - Traditions Palette */
  --color-black: #000000;
  --color-white: #ffffff;

  /* Gold/Cream Brand Colors */
  --color-gold-primary: #c5ac79;      /* Primary gold - buttons, accents */
  --color-gold-secondary: #cdb88e;    /* Secondary gold - hover states */
  --color-gold-light: #dcccae;        /* Light gold - subtle accents */
  --color-cream: #e9e0cd;             /* Cream - soft backgrounds */
  --color-cream-light: #f3eee4;       /* Light cream - highlights */
  --color-off-white: #faf9f6;         /* Off-white - lightest tone */

  /* Dark Tones */
  --color-gray-900: #0a0a0a;
  --color-gray-800: #141414;
  --color-gray-700: #1f1f1f;
  --color-gray-600: #2a2a2a;
  --color-gray-500: #5E5A59;
  --color-gray-400: #8a8a8a;
  --color-gray-300: #aaaaaa;
  --color-gray-200: #cccccc;
  --color-gray-100: #f5f5f5;

  /* Semantic Colors */
  --color-primary: var(--color-gold-primary);
  --color-primary-hover: var(--color-gold-secondary);
  --color-primary-light: var(--color-gold-light);
  --color-background: var(--color-black);
  --color-background-alt: var(--color-gray-900);
  --color-surface: var(--color-gray-800);
  --color-surface-hover: var(--color-gray-700);
  --color-text: var(--color-off-white);
  --color-text-muted: var(--color-gray-400);
  --color-border: var(--color-gray-700);
  --color-error: #e74c3c;
  --color-success: #27ae60;

  /* Typography */
  --font-heading: 'Fjalla One', sans-serif;
  --font-body: 'Abel', sans-serif;

  --font-size-xs: 0.8rem;
  --font-size-sm: 0.9rem;
  --font-size-base: 1.05rem;
  --font-size-lg: 1.2rem;
  --font-size-xl: 1.35rem;
  --font-size-2xl: 1.6rem;
  --font-size-3xl: 2.2rem;
  --font-size-4xl: 2.8rem;
  --font-size-5xl: 3.5rem;
  --font-size-6xl: 4.5rem;

  --line-height-tight: 1.15;
  --line-height-snug: 1.3;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0.01em;
  --letter-spacing-wide: 0.06em;
  --letter-spacing-wider: 0.12em;

  /* Spacing - Golden ratio inspired */
  --space-xs: 0.375rem;
  --space-sm: 0.625rem;
  --space-md: 1rem;
  --space-lg: 1.625rem;
  --space-xl: 2.625rem;
  --space-2xl: 4.25rem;
  --space-3xl: 6.875rem;
  --space-4xl: 11rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1rem;
  --header-height: 80px;
  --header-height-mobile: 64px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(197, 172, 121, 0.3);
  --shadow-glow-strong: 0 0 30px rgba(197, 172, 121, 0.5);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-timing: cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popup: 600;
  --z-tooltip: 700;
}

/* ============================================
   CSS RESET
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
}

body.nav-open {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  color: var(--color-white);
}

h1, .h1 {
  font-size: clamp(2.5rem, 7vw, var(--font-size-6xl));
  letter-spacing: 0.08em;
}

h2, .h2 {
  font-size: clamp(1.875rem, 5vw, var(--font-size-5xl));
  letter-spacing: 0.07em;
}

h3, .h3 {
  font-size: clamp(1.5rem, 3.5vw, var(--font-size-3xl));
}

h4, .h4 {
  font-size: var(--font-size-xl);
  letter-spacing: var(--letter-spacing-wide);
}

h5, .h5 {
  font-size: var(--font-size-lg);
}

h6, .h6 {
  font-size: var(--font-size-base);
}

p {
  margin-bottom: var(--space-lg);
  max-width: 70ch;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-gray-300);
}

.text-lg { font-size: var(--font-size-lg); }
.text-sm { font-size: var(--font-size-sm); }
.text-xs { font-size: var(--font-size-xs); }
.text-muted { color: var(--color-text-muted); }
.text-gold { color: var(--color-primary); }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: var(--letter-spacing-wide); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

a:not(.btn) {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

a:not(.btn):hover {
  color: var(--color-primary-hover);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--space-xl);
  }
}

.section {
  padding-block: var(--space-3xl);
}

@media (min-width: 768px) {
  .section {
    padding-block: var(--space-4xl);
  }
}

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

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 800px;
  margin-inline: auto;
}

/* Pilsen-specific: Left-aligned headers option */
.section__header--left {
  text-align: left;
  margin-inline: 0;
}

.section__title {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.section__subtitle {
  color: var(--color-gray-300);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  max-width: 580px;
  margin-inline: auto;
  margin-top: 0;
}

.section__header--left .section__subtitle {
  margin-inline: 0;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 576px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid { gap: var(--space-xl); }
}

@media (min-width: 992px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid { gap: 2.5rem; }
}

/* Pilsen-specific: Bento Grid for Services */
.bento-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .bento-grid .bento-item--featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-base) var(--transition-timing);
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 172, 121, 0.25);
}

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

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

.btn--outline-gold {
  background-color: transparent;
  color: var(--color-primary);
  border-color: rgba(197, 172, 121, 0.5);
}

.btn--outline-gold:hover {
  background-color: var(--color-primary);
  color: var(--color-black);
  border-color: var(--color-primary);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--font-size-xs);
  min-height: 40px;
}

.btn--lg {
  padding: 1.125rem 2.75rem;
  font-size: var(--font-size-base);
  min-height: 56px;
}

.btn--full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: var(--space-md) 0;
  transition: background-color var(--transition-base), padding var(--transition-base);
}

.header.is-scrolled {
  padding: var(--space-sm) 0;
}

@media (max-width: 991px) {
  .header.is-scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

.header.is-hidden {
  transform: translateY(-100%);
}

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

.header__logo img {
  height: 60px;
  width: auto;
}

@media (min-width: 768px) {
  .header__logo img {
    height: 80px;
  }
}

.header__nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: rgba(0, 0, 0, 0.95);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-2xl);
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.header__nav.is-open {
  display: flex;
}

@media (min-width: 992px) {
  .header__nav {
    display: flex;
    position: static;
    flex-direction: row;
    background-color: transparent;
    padding: 0;
    gap: var(--space-lg);
    min-height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    overflow-y: visible;
    align-items: center;
    justify-content: flex-end;
  }
}

.header__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

@media (max-width: 575px) {
  .header__menu {
    gap: var(--space-md);
  }

  .header__link {
    font-size: var(--font-size-base);
  }
}

@media (min-width: 992px) {
  .header__menu {
    flex-direction: row;
    gap: var(--space-lg);
  }
}

.header__link {
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-white);
  transition: color var(--transition-fast);
  position: relative;
}

@media (min-width: 992px) {
  .header__link {
    font-size: var(--font-size-sm);
  }
}

.header__link:hover,
.header__link.is-active {
  color: var(--color-primary);
}

@media (min-width: 992px) {
  .header__link {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    padding: 0;
  }

  .header__link:hover {
    transform: none;
  }
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-base);
}

.header__link:hover::after,
.header__link.is-active::after {
  width: 100%;
}

.header__cta {
  margin-top: var(--space-lg);
}

@media (min-width: 992px) {
  .header__cta {
    margin-top: 0;
    margin-left: var(--space-md);
  }
}

/* Hamburger Toggle */
.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  z-index: calc(var(--z-modal) + 10);
  position: relative;
}

@media (min-width: 992px) {
  .header__toggle {
    display: none;
  }
}

.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: all var(--transition-base);
  transform-origin: center;
}

.header__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION - Pilsen Style (Left-aligned)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__video,
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--color-black);
}

.hero__video {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero__content {
  position: relative;
  text-align: left;
  padding: 2.5rem;
  max-width: 700px;
}

@media (min-width: 768px) {
  .hero__content {
    padding-left: var(--space-2xl);
  }
}

.hero__eyebrow {
  display: inline-block;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  border: 1px solid var(--color-primary);
  border-radius: 2px;
}

.hero__title {
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-gray-200);
  margin-bottom: 2.5rem;
  line-height: var(--line-height-relaxed);
  max-width: 500px;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: var(--font-size-xl);
  }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 576px) {
  .hero__actions {
    flex-direction: row;
    gap: 1.25rem;
  }
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Page Hero (for inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  background-color: var(--color-background-alt);
  text-align: center;
}

.page-hero__title {
  margin-bottom: var(--space-sm);
}

.page-hero__breadcrumb {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.page-hero__breadcrumb a {
  color: var(--color-text-muted);
}

.page-hero__breadcrumb a:hover {
  color: var(--color-primary);
}

/* ============================================
   SERVICES SECTION - Pilsen Bento Style
   ============================================ */
.service-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.service-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Featured service card - larger */
.service-card--featured {
  padding: 3rem;
  background: linear-gradient(145deg, var(--color-gray-800) 0%, var(--color-gray-900) 100%);
  border-color: rgba(197, 172, 121, 0.3);
}

.service-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-primary), var(--color-gold-light));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.service-card__name {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.service-card--featured .service-card__name {
  font-size: var(--font-size-2xl);
}

.service-card__price {
  font-size: var(--font-size-3xl);
  color: var(--color-primary);
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.service-card--featured .service-card__price {
  font-size: var(--font-size-4xl);
}

.service-card__description {
  color: var(--color-gray-300);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* ============================================
   FEATURES / USP SECTION
   ============================================ */
.feature {
  text-align: center;
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, transparent, rgba(197, 172, 121, 0.03));
  border: 1px solid transparent;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature:hover {
  border-color: rgba(197, 172, 121, 0.2);
  background: linear-gradient(145deg, rgba(197, 172, 121, 0.05), transparent);
}

.feature__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-gold-primary);
  background: transparent;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.feature__icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--color-gold-primary), transparent, var(--color-gold-light)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature:hover .feature__icon {
  background: var(--color-gold-primary);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(197, 172, 121, 0.4);
}

.feature:hover .feature__icon::before {
  opacity: 1;
}

.feature__icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-gold-primary);
  transition: color 0.5s ease;
}

.feature:hover .feature__icon svg {
  color: var(--color-black);
}

.feature__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
  transition: color 0.3s ease;
}

.feature:hover .feature__title {
  color: var(--color-gold-primary);
}

.feature__description {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 280px;
  margin-inline: auto;
}

/* ============================================
   BARBER CARDS - Pilsen Asymmetric Grid
   ============================================ */
.barber-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.barber-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.barber-card__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: var(--color-gray-700);
}

.barber-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.barber-card:hover .barber-card__image img {
  transform: scale(1.05);
}

.barber-card__content {
  padding: 1.5rem;
}

.barber-card__name {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.375rem;
  color: var(--color-white);
}

.barber-card__title {
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.barber-card__experience {
  color: var(--color-gray-300);
  font-size: var(--font-size-sm);
  margin-bottom: 1rem;
}

.barber-card__days {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.barber-card__day {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  border-radius: var(--radius-sm);
  background-color: var(--color-gray-700);
  color: var(--color-text-muted);
}

.barber-card__day.is-active {
  background-color: var(--color-primary);
  color: var(--color-black);
}

.barber-card__bio {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.barber-card__instagram {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
  transition: color var(--transition-fast);
}

.barber-card__instagram:hover {
  color: var(--color-primary);
}

.barber-card__actions {
  display: flex;
  gap: var(--space-sm);
}

.barber-card__actions .btn {
  flex: 1;
}

/* ============================================
   TEAM PROFILE (Full Page)
   ============================================ */
.barber-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .barber-profile {
    grid-template-columns: 300px 1fr;
    align-items: start;
  }

  .barber-profile:nth-child(even) {
    direction: rtl;
  }

  .barber-profile:nth-child(even) > * {
    direction: ltr;
  }
}

.barber-profile__image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--color-gray-700);
}

.barber-profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.barber-profile__header {
  margin-bottom: var(--space-lg);
}

.barber-profile__name {
  margin-bottom: var(--space-xs);
}

.barber-profile__title {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.barber-profile__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.barber-profile__bio {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.barber-profile__philosophy {
  font-style: italic;
  color: var(--color-gray-300);
  padding-left: var(--space-lg);
  border-left: 3px solid var(--color-primary);
  margin-bottom: var(--space-xl);
}

.barber-profile__specialties {
  margin-bottom: var(--space-xl);
}

.barber-profile__specialties h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-sm);
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.specialty-tag {
  background-color: var(--color-gray-800);
  color: var(--color-gray-300);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
}

.barber-profile__schedule {
  margin-bottom: var(--space-xl);
}

.barber-profile__schedule h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-sm);
}

.schedule-days {
  display: flex;
  gap: var(--space-sm);
}

.schedule-day {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
  background-color: var(--color-gray-800);
  color: var(--color-text-muted);
}

.schedule-day.is-active {
  background-color: var(--color-primary);
  color: var(--color-black);
}

.barber-profile__funfact {
  background-color: var(--color-gray-900);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
}

.barber-profile__funfact strong {
  color: var(--color-primary);
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .location {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.location__info h3 {
  margin-bottom: var(--space-lg);
}

.location__item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.location__icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.location__details h4 {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: var(--space-xs);
}

.location__details p,
.location__details address {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin: 0;
}

.location__map {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--color-gray-700);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-gray-800) 0%, var(--color-black) 100%);
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner__title {
  margin-bottom: 1rem;
}

.cta-banner__text {
  color: var(--color-gray-300);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-inline: auto;
}

/* ============================================
   NEIGHBORHOOD PRIDE SECTION (Pilsen-specific)
   ============================================ */
.neighborhood {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.neighborhood::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(197, 172, 121, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.neighborhood__content {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .neighborhood__content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.neighborhood__text h2 {
  color: var(--color-primary);
}

.neighborhood__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.stat-box {
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--color-gray-900);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.stat-box__number {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-box__label {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-background-alt);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid var(--color-border);
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 576px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer__brand img {
  height: 60px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer__brand p {
  color: var(--color-gray-300);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.footer__social svg {
  width: 20px;
  height: 20px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  color: var(--color-gray-300);
  font-size: var(--font-size-base);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__contact address {
  color: var(--color-gray-300);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}

.footer__contact address p {
  margin-bottom: 0.5rem;
}

.footer__contact a {
  color: var(--color-gray-300);
}

.footer__contact a:hover {
  color: var(--color-primary);
}

.footer__hours p {
  color: var(--color-gray-300);
  font-size: var(--font-size-base);
  margin-bottom: 0.5rem;
  line-height: var(--line-height-normal);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer__bottom p {
  color: var(--color-gray-400);
  font-size: var(--font-size-sm);
  margin: 0;
}

.footer__credit {
  margin-top: var(--space-sm);
  font-size: var(--font-size-xs);
  opacity: 0.7;
}

.footer__credit a {
  color: var(--color-gold-primary);
  transition: opacity var(--transition-fast);
}

.footer__credit a:hover {
  opacity: 0.8;
}

/* ============================================
   SOCIAL PROOF POPUP
   ============================================ */
.social-proof {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(194, 168, 115, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-popup);
  opacity: 0;
  transform: translateX(-120%);
  transition: all var(--transition-base) var(--transition-timing);
  pointer-events: none;
  max-width: 320px;
}

.social-proof.is-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.social-proof__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.social-proof__close:hover {
  color: var(--color-white);
}

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

.social-proof__avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.social-proof__content {
  flex: 1;
  min-width: 0;
  padding-right: var(--space-md);
}

.social-proof__message {
  font-size: var(--font-size-sm);
  color: var(--color-white);
  margin: 0;
  line-height: var(--line-height-snug);
}

.social-proof__time {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: var(--space-xs) 0 0;
}

@media (max-width: 575px) {
  .social-proof {
    left: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-proof {
    transition: opacity var(--transition-fast);
    transform: none;
  }

  .social-proof.is-visible {
    transform: none;
  }
}

/* ============================================
   FORMS
   ============================================ */
.form {
  max-width: 600px;
}

.form__group {
  margin-bottom: var(--space-lg);
}

.form__label {
  display: block;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: var(--space-sm);
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: var(--space-md);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-muted);
}

.form__input.is-error,
.form__textarea.is-error,
.form__select.is-error {
  border-color: var(--color-error);
}

.form__input.is-valid,
.form__textarea.is-valid,
.form__select.is-valid {
  border-color: var(--color-success);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  background-size: 16px;
  padding-right: var(--space-2xl);
}

.form__error {
  display: block;
  color: var(--color-error);
  font-size: var(--font-size-xs);
  margin-top: var(--space-xs);
}

.form__message {
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  margin-top: var(--space-lg);
}

.form__message--success {
  background-color: rgba(39, 174, 96, 0.1);
  border: 1px solid var(--color-success);
  color: var(--color-success);
}

.form__message--error {
  background-color: rgba(231, 76, 60, 0.1);
  border: 1px solid var(--color-error);
  color: var(--color-error);
}

.hidden {
  display: none !important;
}

/* ============================================
   PORTFOLIO / GALLERY
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 576px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.gallery__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background-color: var(--color-gray-700);
}

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

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  color: var(--color-black);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
}

.gallery__item:hover .gallery__icon {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: color var(--transition-fast);
  z-index: 1;
}

.lightbox__close:hover {
  color: var(--color-primary);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.lightbox__prev:hover,
.lightbox__next:hover {
  color: var(--color-primary);
}

.lightbox__prev {
  left: var(--space-lg);
}

.lightbox__next {
  right: var(--space-lg);
}

.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

/* ============================================
   BLOG
   ============================================ */
.blog-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.blog-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  background-color: var(--color-primary);
  color: var(--color-black);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2px;
  font-weight: 500;
}

.blog-card__content {
  padding: 1.5rem;
}

.blog-card__meta {
  display: flex;
  gap: 1rem;
  color: var(--color-gray-400);
  font-size: var(--font-size-xs);
  margin-bottom: 0.875rem;
  letter-spacing: 0.02em;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.875rem;
  line-height: var(--line-height-snug);
}

.blog-card__title a {
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.blog-card__title a:hover {
  color: var(--color-primary);
}

.blog-card__excerpt {
  color: var(--color-gray-300);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  transition: gap var(--transition-fast);
}

.blog-card__link:hover {
  gap: var(--space-md);
}

/* Blog Post Single */
.page-hero--blog {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-2xl);
}

.page-hero--blog .blog-post__meta {
  justify-content: center;
  margin-bottom: var(--space-md);
}

.page-hero--blog .blog-post__category {
  background: var(--color-gold-primary);
  color: var(--color-black);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.page-hero--blog .blog-post__date {
  color: var(--color-text-muted);
}

/* ============================================
   BLOG POST - COMPACT MAGAZINE LAYOUT
   ============================================ */
.blog-post {
  padding-bottom: 0;
}

.blog-post__hero {
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-lg);
  background: linear-gradient(180deg, var(--color-gray-900) 0%, var(--color-black) 100%);
  text-align: center;
}

.blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-lg);
  transition: color var(--transition-fast);
}

.blog-post__back:hover {
  color: var(--color-gold-primary);
}

.blog-post__category {
  display: inline-block;
  background: var(--color-gold-primary);
  color: var(--color-black);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: var(--space-md);
}

.blog-post__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post__meta {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.blog-post__meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.blog-post__image {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  margin-top: calc(-1 * var(--space-lg));
  margin-bottom: var(--space-xl);
}

.blog-post__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 2/1;
  object-fit: cover;
}

.blog-post__content {
  padding: var(--space-lg) 0 var(--space-2xl);
}

/* Narrow container for readability */
.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Lead paragraph - larger intro text */
.blog-post__content .lead {
  font-size: var(--font-size-xl);
  color: var(--color-cream);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

/* Compact typography for articles */
.blog-post__content h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  color: var(--color-gold-primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-top: var(--space-md);
}

.blog-post__content h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  color: var(--color-white);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.blog-post__content p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-gray-300);
  margin-bottom: var(--space-md);
}

.blog-post__content ul,
.blog-post__content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.blog-post__content li {
  font-size: var(--font-size-base);
  color: var(--color-gray-300);
  margin-bottom: var(--space-xs);
  line-height: var(--line-height-normal);
}

.blog-post__content ul li {
  list-style-type: disc;
}

.blog-post__content ol li {
  list-style-type: decimal;
}

.blog-post__content strong {
  color: var(--color-white);
  font-weight: 600;
}

/* Two-column layout for lists on desktop */
@media (min-width: 768px) {
  .blog-post__content ul,
  .blog-post__content ol {
    columns: 2;
    column-gap: var(--space-xl);
  }

  .blog-post__content ul li,
  .blog-post__content ol li {
    break-inside: avoid;
  }
}

/* Blog CTA box - compact card style */
.blog-post__cta {
  background: linear-gradient(145deg, rgba(197, 172, 121, 0.1) 0%, var(--color-gray-800) 100%);
  border: 1px solid rgba(197, 172, 121, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  text-align: center;
}

.blog-post__cta h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  margin-top: 0;
}

.blog-post__cta p {
  color: var(--color-gray-300);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
}

.blog-post__cta .btn {
  margin-top: 0;
}

/* Related posts - compact horizontal layout */
.blog-grid--related {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 575px) {
  .blog-grid--related {
    grid-template-columns: 1fr;
  }
}

.blog-grid--related .blog-card {
  background: var(--color-gray-800);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.blog-grid--related .blog-card__image {
  aspect-ratio: 16/9;
}

.blog-grid--related .blog-card__content {
  padding: var(--space-md);
}

.blog-grid--related .blog-card__title {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-xs);
}

/* Legacy styles kept for compatibility */
.blog-post__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 992px) {
  .blog-post__container {
    grid-template-columns: 1fr 300px;
  }
}

.blog-post__featured-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-xl);
  aspect-ratio: 16/9;
  background: var(--color-gray-800);
}

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

.blog-post__body {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}

.blog-post__body h2 {
  font-size: var(--font-size-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-gold-primary);
}

.blog-post__body h3 {
  font-size: var(--font-size-lg);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.blog-post__body p {
  margin-bottom: var(--space-md);
  color: var(--color-gray-300);
}

.blog-post__body ul,
.blog-post__body ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.blog-post__body li {
  margin-bottom: var(--space-xs);
  color: var(--color-gray-300);
}

.blog-post__body ul li {
  list-style-type: disc;
}

.blog-post__body ol li {
  list-style-type: decimal;
}

.blog-post__body strong {
  color: var(--color-white);
}

.blog-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.blog-post__tag {
  background: var(--color-gray-800);
  color: var(--color-text-muted);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
}

.blog-post__nav {
  margin-top: var(--space-2xl);
}

.blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.blog-post__back:hover {
  color: var(--color-gold-primary);
}

/* Sidebar */
.blog-post__sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.sidebar-widget {
  background: var(--color-gray-900);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.sidebar-widget__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.sidebar-widget__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.sidebar-widget__list a {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.sidebar-widget__list a:hover {
  color: var(--color-gold-primary);
}

.sidebar-widget address {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.sidebar-widget address p {
  margin-bottom: var(--space-xs);
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking__widget {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 600px;
}

.booking__widget iframe {
  width: 100%;
  height: 800px;
  border: 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.pricing-table th {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--color-primary);
}

.pricing-table td:last-child {
  text-align: right;
  font-size: var(--font-size-lg);
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl);
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 12rem);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-page__title {
  margin-bottom: var(--space-md);
}

.error-page__text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Page load animation */
body {
  animation: pageLoad 0.8s ease-out forwards;
}

@keyframes pageLoad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Scroll-triggered animations */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

[data-animate].is-animated {
  opacity: 1;
  transform: translate(0, 0) scale(1) !important;
}

[data-animate="fade-up"] {
  transform: translateY(60px);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="fade-left"] {
  transform: translateX(-60px);
}

[data-animate="fade-right"] {
  transform: translateX(60px);
}

[data-animate="scale-up"] {
  transform: scale(0.9);
}

[data-animate="fade-scale"] {
  transform: translateY(40px) scale(0.95);
}

[data-animate="blur-in"] {
  transform: translateY(20px);
  filter: blur(10px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate="blur-in"].is-animated {
  filter: blur(0);
}

/* Stagger animations */
[data-animate-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate-stagger].is-animated > *:nth-child(1) { transition-delay: 0ms; }
[data-animate-stagger].is-animated > *:nth-child(2) { transition-delay: 100ms; }
[data-animate-stagger].is-animated > *:nth-child(3) { transition-delay: 200ms; }
[data-animate-stagger].is-animated > *:nth-child(4) { transition-delay: 300ms; }
[data-animate-stagger].is-animated > *:nth-child(5) { transition-delay: 400ms; }
[data-animate-stagger].is-animated > *:nth-child(6) { transition-delay: 500ms; }
[data-animate-stagger].is-animated > *:nth-child(7) { transition-delay: 600ms; }
[data-animate-stagger].is-animated > *:nth-child(8) { transition-delay: 700ms; }

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

/* Hero animations */
.hero__content {
  animation: heroFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  opacity: 0;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title {
  animation: heroTitleIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
  opacity: 0;
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__subtitle {
  animation: heroSubtitleIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards;
  opacity: 0;
}

@keyframes heroSubtitleIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__actions {
  animation: heroActionsIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
  opacity: 0;
}

@keyframes heroActionsIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  animation: headerSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

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

/* Card hover effects */
.service-card,
.barber-card,
.blog-card,
.feature {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover,
.barber-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.feature:hover {
  transform: translateY(-4px);
}

/* Image reveal animation */
.barber-card__image img,
.blog-card__image img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.barber-card:hover .barber-card__image img,
.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

/* Section title underline animation */
.section__title {
  position: relative;
  display: inline-block;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-primary), var(--color-gold-light));
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.section__header--left .section__title::after {
  left: 0;
  transform: translateX(0) scaleX(0);
}

.section__header.is-animated .section__title::after,
.section__header--left.is-animated .section__title::after {
  transform: translateX(-50%) scaleX(1);
}

.section__header--left.is-animated .section__title::after {
  transform: translateX(0) scaleX(1);
}

/* CTA banner pulse */
.cta-banner .btn--primary {
  animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(197, 172, 121, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(197, 172, 121, 0);
  }
}

/* Scroll indicator */
.hero__scroll {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0.5;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  body,
  .hero__content,
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .header {
    animation: none;
    opacity: 1;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
    filter: none;
  }

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

  .service-card,
  .barber-card,
  .blog-card,
  .feature,
  .social-proof {
    transition: none;
  }

  .cta-banner .btn--primary,
  .hero__scroll {
    animation: none;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* Gold gradient text */
.text-gradient {
  background: linear-gradient(135deg, var(--color-gold-primary) 0%, var(--color-cream-light) 50%, var(--color-gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold accent line */
.accent-line::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-primary), var(--color-gold-light));
  margin-top: var(--space-md);
}

.accent-line--center::after {
  margin-inline: auto;
}

/* Premium card style */
.premium-card {
  background: linear-gradient(145deg, var(--color-gray-800) 0%, var(--color-gray-900) 100%);
  border: 1px solid var(--color-gray-700);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
}

/* Section divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gray-700) 20%, var(--color-gold-primary) 50%, var(--color-gray-700) 80%, transparent);
  margin: var(--space-3xl) 0;
}

/* Stats emphasis */
.stat-number {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  color: var(--color-gold-primary);
  line-height: 1;
}

/* Gold horizontal rule */
.hr-gold {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
  margin: var(--space-xl) 0;
}

/* ============================================
   WHY CHOOSE SECTION - BENTO LAYOUT
   ============================================ */
.why-choose {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .why-choose {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }
}

.why-choose__main {
  padding: var(--space-xl);
  background: linear-gradient(145deg, rgba(197, 172, 121, 0.1) 0%, rgba(26, 26, 26, 0.8) 100%);
  border: 1px solid rgba(197, 172, 121, 0.2);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .why-choose__main {
    padding: var(--space-2xl);
  }
}

.why-choose__label {
  display: inline-block;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  color: var(--color-gold-primary);
  margin-bottom: var(--space-md);
}

.why-choose__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
}

@media (min-width: 768px) {
  .why-choose__title {
    font-size: var(--font-size-4xl);
  }
}

.why-choose__text {
  color: var(--color-gray-300);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xl);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.why-box {
  padding: var(--space-lg);
  background: var(--color-gray-800);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
}

.why-box:hover {
  border-color: var(--color-gold-primary);
  transform: translateY(-4px);
}

.why-box--accent {
  background: linear-gradient(145deg, rgba(197, 172, 121, 0.15) 0%, var(--color-gray-800) 100%);
  border-color: rgba(197, 172, 121, 0.3);
}

.why-box__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(197, 172, 121, 0.1);
}

.why-box__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold-primary);
}

.why-box__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.why-box__text {
  font-size: var(--font-size-sm);
  color: var(--color-gray-400);
  margin: 0;
  line-height: var(--line-height-snug);
}

/* ============================================
   iOS & MOBILE OPTIMIZATIONS
   ============================================ */

/* iOS safe area support */
@supports (padding-top: env(safe-area-inset-top)) {
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .header {
    padding-top: env(safe-area-inset-top);
  }

  .footer {
    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
  }

  .social-proof {
    bottom: calc(var(--space-lg) + env(safe-area-inset-bottom));
    left: calc(var(--space-lg) + env(safe-area-inset-left));
  }

  @media (max-width: 575px) {
    .social-proof {
      left: calc(var(--space-md) + env(safe-area-inset-left));
      right: calc(var(--space-md) + env(safe-area-inset-right));
      bottom: calc(var(--space-md) + env(safe-area-inset-bottom));
    }
  }
}

/* iOS touch highlights */
* {
  -webkit-tap-highlight-color: rgba(197, 172, 121, 0.2);
}

/* iOS input zoom prevention */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select {
    font-size: 16px !important;
  }
}

/* iOS momentum scrolling */
.header__nav,
.gallery,
.blog-grid {
  -webkit-overflow-scrolling: touch;
}

/* iOS video autoplay fix */
video {
  -webkit-playsinline: true;
  playsinline: true;
}

/* Improved touch targets for mobile */
@media (max-width: 768px) {
  .btn {
    min-height: 48px;
    padding: 14px 28px;
  }

  .btn--sm {
    min-height: 40px;
    padding: 10px 20px;
  }

  .header__link {
    padding: 12px 0;
  }

  .footer__links a,
  .footer__contact a {
    display: inline-block;
    padding: 8px 0;
  }
}

/* iOS status bar color matching */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
  }
}

/* Prevent iOS font size changes on orientation */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* iOS smooth scrolling for fixed elements */
.header {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Better iOS landscape handling */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    height: auto;
  }

  .hero__content {
    padding-top: calc(var(--header-height) + 20px);
  }

  .page-hero {
    padding: 100px 0 40px;
  }
}

/* iOS notch handling for landscape */
@media (orientation: landscape) {
  @supports (padding-left: env(safe-area-inset-left)) {
    .container {
      padding-left: max(var(--container-padding), env(safe-area-inset-left));
      padding-right: max(var(--container-padding), env(safe-area-inset-right));
    }
  }
}

/* Prevent bounce scrolling issues on iOS */
.nav-open {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* iOS button appearance reset */
input[type="submit"],
button {
  -webkit-appearance: none;
  appearance: none;
}

/* Better iOS form styling */
input,
textarea,
select {
  -webkit-appearance: none;
  appearance: none;
  border-radius: var(--radius-sm);
}
