.root-body {
  background-color: #0A0A0C;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 50% -20%, rgba(212, 175, 55, 0.08) 0%, transparent 60%), radial-gradient(circle at 0% 100%, rgba(18, 18, 21, 0.8) 0%, #0A0A0C 100%);
}

@media (max-width: 768px) {
  .root-body {
  padding-bottom: 75px;
  }
}

.header {
  background-color: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.75rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .header {
  padding: 0.75rem 1rem;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

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

.logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media (max-width: 768px) {
  .logo-img {
  height: 55px;
  }
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
}

.logo-name {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .logo-name {
  font-size: 1.1rem;
  }
}

.logo-address {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: #A1A1AA;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .logo-address {
  font-size: 0.65rem;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .nav-menu {
  display: none;
  }
}

.nav-link {
  color: #A1A1AA;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

@media (max-width: 768px) {
  .header-cta {
  display: none;
  }
}

.btn-gold {
  background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7);
  color: #0A0A0C;
  border: none;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
  cursor: pointer;
}

.hero {
  background-color: #0A0A0C;
  padding: 6.5rem 2rem 7rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

@media (max-width: 768px) {
  .hero {
  padding: 4.5rem 1rem 5rem 1rem;
  }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-inner {
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .hero-left {
  align-items: center;
  }
}

.hero-badge {
  background-color: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #FCF6BA;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  width: fit-content;
}

.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: 3.85rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
}

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

.text-gold-gradient {
  background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-desc {
  color: #A1A1AA;
  font-size: 1.15rem;
  line-height: 1.65;
  margin: 0;
  max-width: 580px;
}

@media (max-width: 768px) {
  .hero-desc {
  font-size: 1.05rem;
  margin: 0 auto;
  }
}

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

@media (max-width: 768px) {
  .hero-ctas {
  flex-direction: column;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  }
}

.btn-outline-gold {
  border: 1px solid rgba(212, 175, 55, 0.4);
  background-color: transparent;
  color: #FCF6BA;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background-color: #121215;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  max-width: 360px;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.hero-card-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-card-badge {
  color: #D4AF37;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-container {
  padding: 6.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
}

@media (max-width: 768px) {
  .section-container {
  padding: 4.5rem 1rem;
  gap: 2.5rem;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
}

.section-eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  color: #D4AF37;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin: 0;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  width: 100%;
}

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

.service-card {
  background-color: #121215;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  gap: 1rem;
}

.service-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}

.service-price {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #FCF6BA;
  white-space: nowrap;
}

.service-duration {
  font-size: 0.8rem;
  color: #A1A1AA;
  margin-top: -0.5rem;
}

.service-desc {
  font-size: 0.9rem;
  color: #A1A1AA;
  line-height: 1.55;
  flex-grow: 1;
}

.roster-hero {
  padding-top: 180px;
}

@media (max-width: 768px) {
  .roster-hero {
  padding-top: 130px;
  }
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 1rem;
}

.filter-pill {
  background-color: #121215;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #A1A1AA;
  padding: 0.55rem 1.35rem;
  border-radius: 30px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.filter-pill.active {
  background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7);
  color: #0A0A0C;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

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

@media (max-width: 768px) {
  .barber-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .barber-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  }
}

.barber-card {
  background-color: #121215;
  border: 1px solid #1C1C22;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
}

.barber-card-clickable {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  flex-grow: 1;
}

.barber-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #0A0A0C;
}

.barber-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.barber-rating-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  padding: 0.3rem 0.65rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  z-index: 10;
}

@media (max-width: 768px) {
  .barber-rating-badge {
  top: 0.4rem;
  right: 0.4rem;
  padding: 0.15rem 0.4rem;
  font-size: 0.65rem;
  }
}

.barber-status-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728);
  color: #0A0A0C;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 10;
}

@media (max-width: 768px) {
  .barber-status-tag {
  top: 0.4rem;
  left: 0.4rem;
  padding: 0.15rem 0.4rem;
  font-size: 0.55rem;
  }
}

.barber-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .barber-body {
  padding: 0.6rem 0.6rem;
  gap: 0.15rem;
  }
}

@media (max-width: 480px) {
  .barber-body {
  padding: 0.4rem 0.4rem;
  gap: 0.1rem;
  }
}

.barber-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
}

@media (max-width: 768px) {
  .barber-name {
  font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .barber-name {
  font-size: 0.85rem;
  }
}

.barber-specialty {
  font-size: 0.8rem;
  color: #A1A1AA;
  margin: 0;
}

@media (max-width: 768px) {
  .barber-specialty {
  font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .barber-specialty {
  font-size: 0.65rem;
  }
}

.barber-footer {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

@media (max-width: 768px) {
  .barber-footer {
  padding: 0 0.6rem 0.6rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .barber-footer {
  padding: 0 0.4rem 0.4rem 0.4rem;
  }
}

.barber-btn {
  width: 100%;
  background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7);
  color: #0A0A0C;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (max-width: 768px) {
  .barber-btn {
  padding: 0.5rem;
  font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .barber-btn {
  padding: 0.4rem;
  font-size: 0.65rem;
  }
}

.gallery-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  width: 100%;
  padding: 1rem 0.2rem;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-card {
  flex: 0 0 280px;
  background-color: #121215;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.info-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
  width: 100%;
}

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

.info-col-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.info-icon {
  color: #D4AF37;
  font-size: 1.5rem;
  margin-top: 0.15rem;
}

.info-label {
  display: block;
  font-weight: 800;
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.info-val {
  display: block;
  color: #A1A1AA;
  font-size: 0.95rem;
  line-height: 1.55;
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: #121215;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.95rem;
  color: #A1A1AA;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.hours-day {
  font-weight: 700;
  color: #FFFFFF;
}

.footer {
  background-color: #070709;
  color: #A1A1AA;
  padding: 5.5rem 2rem 2.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

@media (max-width: 768px) {
  .footer {
  padding: 4rem 1rem 2rem 1rem;
  }
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 5rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

@media (max-width: 768px) {
  .footer-inner {
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: center;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .footer-col {
  align-items: center;
  }
}

.footer-desc {
  color: #A1A1AA;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 340px;
}

@media (max-width: 768px) {
  .footer-desc {
  max-width: 100%;
  }
}

.footer-heading {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  font-family: "Outfit", sans-serif;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-links {
  align-items: center;
  }
}

.footer-link {
  color: #A1A1AA;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #71717A;
  font-size: 0.85rem;
  width: 100%;
}

@media (max-width: 768px) {
  .footer-bottom {
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  }
}

.sticky-dock {
  display: none;
}

@media (max-width: 768px) {
  .sticky-dock {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.8rem 1rem;
  gap: 0.75rem;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
  }
}

.dock-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

.dock-btn-secondary {
  background-color: #121215;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dock-btn-primary {
  background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728);
  color: #0A0A0C;
  border: none;
}

.nav-link:hover {
  color: #FFFFFF;
}

.phone-btn:hover {
  background-color: #eab308;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(255, 199, 0, 0.3);
}

.book-btn:hover {
  background-color: #FFC700;
  color: #0B1325;
}

.btn-primary:hover {
  background-color: #facc15;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(234, 179, 8, 0.35);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.service-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.service-card:hover .service-icon {
  background-color: #0000FF;
  color: #ffffff;
}

.area-tag:hover {
  background-color: #0000FF;
  color: #ffffff;
  border-color: #0000FF;
  transform: scale(1.03);
}

.footer-link:hover {
  color: #FFFFFF;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
}

.btn-outline-gold:hover {
  background-color: rgba(212, 175, 55, 0.08);
  border-color: #D4AF37;
  transform: translateY(-2px);
}

.hero-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

.filter-pill:hover {
  border-color: rgba(212, 175, 55, 0.5);
  color: #FFFFFF;
}

.barber-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
}

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

.barber-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.45);
}

.gallery-container::-webkit-scrollbar {
  display: none;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

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

.social-icon:hover {
  background-color: #D4AF37;
  color: #0A0A0C;
  transform: translateY(-2px);
}

.modal.active {
  opacity: 1;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close:hover {
  color: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}