:root {
  --primary: #064e3b;
  --accent: #f8f1e9;
  --text: #1a1a1a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f9fafb;
  color: var(--text);
  line-height: 1.5;
}

/* =====================
HEADER / HERO
===================== */
.profile-header {
  background: linear-gradient(120deg, #064e3b, #0f766e);
  color: white;
  padding: 32px 20px 40px;
}

.profile-header h1 {
  font-size: 26px;
  margin-bottom: 6px;
}

.profile-meta {
  font-size: 14px;
  opacity: .95;
}

/* =====================
LAYOUT
===================== */
.profile-content {
  max-width: 1100px;
  margin: -30px auto 0;
  padding: 0 16px 100px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

/* =====================
SERVICES
===================== */
.service-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.service-card:last-child {
  border-bottom: none;
}

.service-card span {
  font-weight: 500;
}

.service-card strong {
  font-size: 14px;
  color: var(--muted);
}

/* =====================
STAFF
===================== */
.staff-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

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

.staff-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 6px;
}

/* =====================
GALLERY
===================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 100px;
  border-radius: 14px;
  object-fit: cover;
}

/* =====================
REVIEWS
===================== */
.review {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.review:last-child {
  border-bottom: none;
}

.review strong {
  display: block;
  margin-bottom: 4px;
}

/* =====================
STICKY BOOK BUTTON (MOBILE)
===================== */
.sticky-book {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 16px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
  z-index: 1000;
}

/* =====================
TABLET ≥ 768px
===================== */
@media (min-width: 768px) {
  .profile-header h1 {
    font-size: 32px;
  }

  .sticky-book {
    position: static;
    display: inline-block;
    margin: 20px auto 0;
  }

  .profile-content {
    padding-bottom: 40px;
  }
}

/* =====================
DESKTOP ≥ 1024px
===================== */
@media (min-width: 1024px) {
  .profile-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
  }

  .profile-content section {
    margin-bottom: 0;
  }
}

.hours-list {
  list-style: none;
  margin-top: 12px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.hours-list li.closed {
  color: var(--muted);
}

.availability {
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  background: #ecfdf5;
  color: #065f46;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}


.review-form {
  margin-top: 12px;
}

.stars {
  font-size: 26px;
  color: #d1d5db;
  cursor: pointer;
  margin-bottom: 10px;
}

.stars span.active {
  color: #fbbf24;
}

.review-form textarea {
  width: 100%;
  min-height: 90px;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 12px;
  margin-bottom: 12px;
  font-family: inherit;
}

.review-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 14px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  cursor: pointer;
}


.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: white;
  transition: transform .15s ease, opacity .15s ease;
}

.social:hover {
  transform: translateY(-2px);
  opacity: .92;
}

/* Platform Colors */
.social.ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social.fb {
  background: #1877f2;
}

.social.x {
  background: #000000;
}

.social.snap {
  background: #fffc00;
  color: #000;
}


.gallery-slider {
  position: relative;
  margin-top: 12px;
}

.gallery-viewport {
  overflow: hidden;
  border-radius: 18px;
}

.gallery-track {
  display: flex;
  transition: transform .4s ease;
}

/* IMAGE SIZE */
.gallery-track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  height: 220px;
  border-radius: 14px;
  margin-right: 10px;
}

/* 3 columns (desktop) */
@media (min-width: 1024px) {
  .gallery-track img {
    width: calc(100% / 3);
  }
}

/* 2 columns (tablet) */
@media (min-width: 640px) and (max-width: 1023px) {
  .gallery-track img {
    width: calc(100% / 2);
  }
}

/* 1 column (mobile) */
@media (max-width: 639px) {
  .gallery-track img {
    width: 100%;
    height: 200px;
  }
}

/* NAV BUTTONS */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  color: white;
  border: none;
  font-size: 26px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.slide-btn.prev { left: 10px; }
.slide-btn.next { right: 10px; }

@media (max-width: 767px) {
  .slide-btn {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }
}

    .contact-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e94560;
            flex-shrink: 0;
        }
        
        .contact-details h4 {
            font-size: 14px;
            color: #999;
            margin-bottom: 5px;
        }
        
        .contact-details p {
            font-size: 16px;
            color: #1a1a2e;
            font-weight: 500;
        }


     .hours-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        
        .hours-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .hour-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .hour-item:last-child {
            border-bottom: none;
        }
        
        .day-name {
            font-weight: 500;
            color: #1a1a2e;
        }
        
        .hours-time {
            color: #666;
        }
        
        .hours-closed {
            color: #e94560;
            font-weight: 500;
        }

        .rating-stars {
  color: #fbbf24;
  font-size: 16px;
}
