/* Main site styles */
:root {
  /* Main colours */
  --black: #000000;
  --white: #ffffff;
  --gold: #d2b26a;
  --gold-light: #e4c487;
  --charcoal: #373532;
  --dark-grey: #2f2f2f;
  --text-light: rgba(255, 255, 255, 0.92);
  --text-soft: rgba(255, 255, 255, 0.82);
  --text-muted: rgba(255, 255, 255, 0.68);
  --text-dark: #1f1f1f;
  --text-dark-soft: rgba(31, 31, 31, 0.82);
  --border-gold-soft: rgba(210, 178, 106, 0.16);
  --border-gold-mid: rgba(210, 178, 106, 0.28);
  --shadow-soft: 0 10px 22px rgba(0, 0, 0, 0.14);
  --shadow-dark: 0 14px 30px rgba(0, 0, 0, 0.24);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 8px;
  /* Main fonts */
  --font-heading: "Noto Serif Display", serif;
  --font-body: "Poppins", sans-serif;
}
/* Global section */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
}
a {
  color: inherit;
}
button,
input,
textarea,
select {
  font: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.reviews-title,
.team-title,
.about-title,
.goals-title,
.contact-address-box h2,
.contact-social-card h2,
.contact-form-intro h2,
.hero-content h1,
.about-hero h1,
.team-banner h2,
.barber-info h3,
.service-card h3,
.goal-card h3,
.press-content h2,
.services-hero h1,
.contact-hero h1 {
  font-family: var(--font-heading);
  font-weight: 400;
}
.home-page,
.about-page,
.services-page,
.contact-page {
  background:
    radial-gradient(circle at top left, rgba(210, 178, 106, 0.05), transparent 20%),
    radial-gradient(circle at bottom right, rgba(228, 196, 135, 0.03), transparent 24%),
    var(--black);
  color: var(--white);
}
/* Animation section */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes softGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(210, 178, 106, 0);
  }
  50% {
    box-shadow: 0 0 22px rgba(210, 178, 106, 0.16);
  }
}

@keyframes heroZoom {
  0% {
    transform: scale(1.08) translateX(-2.5%);
  }
  50% {
    transform: scale(1.16) translateX(2.5%);
  }
  100% {
    transform: scale(1.1) translateX(-1.5%);
  }
}

@keyframes ctaCameraMove {
  0% {
    transform: scale(1.08) translateX(2%);
  }
  50% {
    transform: scale(1.15) translateX(-2.5%);
  }
  100% {
    transform: scale(1.1) translateX(1.5%);
  }
}

@keyframes aboutHeroCameraMove {
  0% {
    background-position: 44% center;
    background-size: 108%;
  }
  50% {
    background-position: 56% center;
    background-size: 116%;
  }
  100% {
    background-position: 48% center;
    background-size: 110%;
  }
}

.hero-content,
.about-hero-inner,
.services-hero-inner,
.contact-hero .container {
  animation: fadeUp 0.8s ease both;
}

.cave-navbar {
  animation: fadeIn 0.7s ease both;
}

.hero-line,
.about-hero-line,
.services-line,
.contact-hero-line,
.press-line,
.goals-line {
  animation: softGlow 3s ease-in-out infinite;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}
/* Shared typography section */
.section-heading,
.reviews-heading,
.team-intro,
.contact-form-intro {
  max-width: 780px;
  margin: 0 auto 50px;
}
.section-subtitle,
.hero-subtitle,
.about-home-subtitle,
.about-hero-subtitle,
.services-subtitle,
.contact-hero-subtitle,
.team-banner-subtitle,
.team-subtitle,
.reviews-subtitle,
.contact-section-subtitle,
.press-sub,
.goals-sub,
.booking-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.section-title,
.reviews-title,
.team-title,
.contact-address-box h2,
.contact-social-card h2,
.contact-form-intro h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.section-intro,
.reviews-intro,
.team-description,
.contact-address-box p,
.contact-social-card p,
.contact-form-intro p {
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.82;
  margin: 0;
}
.hero-line,
.about-hero-line,
.services-line,
.contact-hero-line,
.press-line,
.goals-line,
.barber-divider {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, rgba(210, 178, 106, 0.04) 0%, var(--gold) 50%, rgba(210, 178, 106, 0.04) 100%);
}
/* Buttons section */
.btn-outline,
.about-btn,
.services-booking-btn,
.contact-submit-btn,
.booking-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 54px;
  padding: 13px 30px;
  border-radius: var(--radius-md);
  box-sizing: border-box;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-outline,
.booking-cta-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-outline:hover,
.booking-cta-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.about-btn,
.contact-submit-btn {
  background: linear-gradient(180deg, var(--dark-grey) 0%, #111111 100%);
  border: 1px solid var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.about-btn:hover,
.contact-submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #3a3835 0%, #161616 100%);
  border-color: var(--gold-light);
  color: var(--white);
}
.services-booking-btn {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  border: 1px solid var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-dark);
}
.services-booking-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #f0d8a2 0%, var(--gold-light) 100%);
  border-color: var(--gold-light);
  color: var(--black);
}
/* Navigation section */
.cave-navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.cave-navbar.navbar-scrolled {
  border-bottom-color: rgba(210, 178, 106, 0.12);
  background: rgba(0, 0, 0, 0.90);
  backdrop-filter: blur(10px);
}
.navbar-brand img {
  display: block;
  width: auto;
  height: 100px;
  background: transparent;
}
.nav-link {
  margin: 0 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.18em;
  transition: color 0.3s ease;
}
.cave-navbar .nav-link:hover,
.cave-navbar .nav-link.active,
.cave-navbar .navbar-nav .nav-link.active,
.cave-navbar .navbar-nav .nav-link.show {
  color: var(--gold);
}
.navbar-toggler {
  border: none;
  padding: 6px 8px;
  box-shadow: none !important;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}
/* Social icons section */
.social-icons,
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-icons a,
.footer-social a {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.social-icons a:hover,
.footer-social a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}
.social-icons img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}
/* Home hero section */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 100px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: -3%;
  z-index: 0;
  background: url("../images/Background.webp") center center / cover no-repeat;
  animation: heroZoom 12s ease-in-out infinite alternate;
  filter: brightness(1.12);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.44) 100%),
    radial-gradient(circle at top center, rgba(210, 178, 106, 0.10), transparent 35%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.82);
}
.hero-subtitle {
  margin-bottom: 18px;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  letter-spacing: 0.05em;
  line-height: 1.18;
  margin-bottom: 22px;
}
.hero-line {
  margin: 0 auto 28px;
}
.hero-content p {
  margin-bottom: 38px;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
/* Home awards section */
.awards-section {
  padding: 100px 0;
  background: var(--black);
  overflow: hidden;
}
.awards-heading {
  margin-bottom: 34px;
}
.awards-slider {
  width: 100%;
  overflow: visible;
}
.awards-slider .swiper-wrapper {
  align-items: center;
}
.awards-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transform: scale(0.8);
  transition: 0.6s ease;
}
.awards-slider .swiper-slide img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
}
.awards-slider .swiper-slide-active {
  z-index: 3;
  opacity: 1;
  transform: scale(1.08);
}
/* Home services section */
.services-section {
  position: relative;
  padding: 90px 0;
  background: #ffffff;
  overflow: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(210, 178, 106, 0.07), transparent 22%),
    radial-gradient(circle at bottom right, rgba(228, 196, 135, 0.05), transparent 20%);
  pointer-events: none;
}
.services-section .container {
  position: relative;
  z-index: 2;
}
.services-section .section-title {
  color: var(--text-dark);
}
.services-section .section-intro {
  color: var(--text-dark-soft);
}
.service-card {
  height: 100%;
  padding: 32px 26px;
  border: 1px solid var(--border-gold-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f8f6f2 100%);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-icon {
  flex-shrink: 0;
  width: 56px;
  margin-top: 2px;
  filter: brightness(0);
}
.service-card h3 {
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 0.98rem;
  letter-spacing: 0.12em;
}
.service-card p {
  margin: 0;
  color: var(--text-dark-soft);
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.75;
}
.services-link-wrap {
  padding-top: 42px;
}
/* Home about section */
.about-section {
  position: relative;
  min-height: 90vh;
  padding: 160px 0;
  background: url("../images/cave1.webp") center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.72) 35%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 75% 40%, rgba(210, 178, 106, 0.08), transparent 45%);
}
.about-section .container {
  position: relative;
  z-index: 2;
}
.about-title {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-text {
  max-width: 520px;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
}

/* Reviews section */

.reviews-section {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(180deg, #0b0b0b 0%, #11100e 48%, #000000 100%);
  overflow: hidden;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(210, 178, 106, 0.08), transparent 18%, transparent 82%, rgba(210, 178, 106, 0.05)),
    radial-gradient(circle at 50% 0%, rgba(210, 178, 106, 0.12), transparent 34%),
    radial-gradient(circle at 16% 82%, rgba(228, 196, 135, 0.06), transparent 26%);
  pointer-events: none;
}

.reviews-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(980px, 86vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 178, 106, 0.42), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.reviews-heading,
.reviews-slider,
.reviews-rating-bar {
  position: relative;
  z-index: 2;
}

.reviews-heading {
  margin-bottom: 26px;
}

.reviews-title-line {
  width: 120px;
  height: 1px;
  margin: 20px auto 24px;
  background: linear-gradient(90deg, transparent, rgba(210, 178, 106, 0.95), transparent);
}

.reviews-intro {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.82;
}

.reviews-rating-bar {
  max-width: 760px;
  margin: 0 auto 58px;
  padding: 22px 30px;
  border: 1px solid rgba(210, 178, 106, 0.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, rgba(210, 178, 106, 0.10), rgba(210, 178, 106, 0.02));
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.reviews-rating-score {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.reviews-rating-number {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.reviews-rating-stars {
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 18px rgba(210, 178, 106, 0.20);
}

.reviews-rating-label {
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.reviews-rating-sep {
  flex-shrink: 0;
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, transparent, rgba(210, 178, 106, 0.42), transparent);
}

.reviews-rating-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.72;
}

.reviews-slider {
  padding: 12px 4px 68px;
}

.reviews-slider .swiper-slide {
  height: auto;
}

.review-card {
  position: relative;
  height: 100%;
  min-height: 330px;
  padding: 30px 26px 24px;
  border: 1px solid rgba(210, 178, 106, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.025) 100%),
    linear-gradient(160deg, #22201d 0%, #121212 58%, #0b0b0b 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(210, 178, 106, 0.18), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.04));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-7px);
  border-color: rgba(210, 178, 106, 0.34);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.46);
}

.review-card:hover::after {
  opacity: 1;
}

.review-top {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-shadow: 0 0 18px rgba(210, 178, 106, 0.20);
}

.review-google-badge {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4285f4;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
}

.review-text-wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  margin-bottom: 24px;
}

.review-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.86;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  max-height: calc(1.86em * 5);
}


.review-author {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(210, 178, 106, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(210, 178, 106, 0.34);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(210, 178, 106, 0.26), rgba(210, 178, 106, 0.06)),
    #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
}

.review-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.review-author-tag {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reviews-pagination {
  bottom: 0 !important;
}

.reviews-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.24);
  opacity: 1;
  transition: all 0.3s ease;
}

.reviews-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: var(--radius-sm);
  background: var(--gold);
}

/* Booking call to action section */
.booking-cta-section {
  background: var(--black);
}
.booking-cta-bg {
  position: relative;
  min-height: 680px;
  background: var(--black);
  overflow: hidden;
}
.booking-cta-bg::before {
  content: "";
  position: absolute;
  inset: -3%;
  z-index: 0;
  background: url("../images/Book.webp") center / cover no-repeat;
  animation: ctaCameraMove 13s ease-in-out infinite alternate;
  filter: brightness(1.12);
}
.booking-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.36) 45%, rgba(0, 0, 0, 0.08) 100%);
  display: flex;
  align-items: center;
}
.booking-cta-text {
  padding: 3rem 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.82);
}
.booking-headline {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}
.booking-headline em {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}
.booking-sub {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.65;
}
.booking-cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.booking-cta-divider {
  width: 1px;
  height: 60px;
  margin-bottom: 0.5rem;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.booking-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.70rem;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

/* Mobile app download section */
.app-download-section {
  position: relative;
  padding: 76px 0;
  border-top: 1px solid rgba(210, 178, 106, 0.22);
  border-bottom: 1px solid rgba(210, 178, 106, 0.18);
  background:
    linear-gradient(105deg, rgba(210, 178, 106, 0.08), transparent 42%),
    #111111;
  overflow: hidden;
}
.app-download-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(210, 178, 106, 0.24), transparent);
}
.app-download-section .container {
  position: relative;
  z-index: 2;
}
.app-download-subtitle {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}
.app-download-text h2 {
  max-width: 650px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
}
.app-download-text p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.7;
}
.app-download-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}
.app-download-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 72px;
  border-radius: 7px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.app-download-links a:hover,
.app-download-links a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}
.app-download-links a:focus-visible {
  outline: 3px solid rgba(210, 178, 106, 0.5);
  outline-offset: 4px;
}
.app-download-links img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Footer section */
.site-footer {
  padding: 52px 40px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--black);
}
.footer-top-bar {
  margin-bottom: 52px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-top-bar span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer-top-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 168, 76, 0.40), transparent);
}
.footer-locations {
  display: flex;
  flex-direction: column;
}
.footer-location-item {
  padding: 4px 0 20px;
}
.footer-location-tag,
.contact-location-tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  border: 1px solid rgba(201, 168, 76, 0.32);
  color: var(--gold);
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.footer-location-tag {
  margin-bottom: 12px;
}
.footer-location-item p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.footer-map-link {
  display: inline-block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.70rem;
  letter-spacing: 0.10em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.footer-map-link:hover {
  color: var(--gold);
}
.footer-location-divider {
  width: 40px;
  height: 1px;
  margin: 4px 0 24px;
  background: rgba(201, 168, 76, 0.28);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 18px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.93rem;
  font-weight: 300;
  letter-spacing: 0.10em;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.footer-social {
  gap: 24px;
}
.footer-social img {
  display: block;
  width: 54px;
  height: auto;
}
.footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.83rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.footer-bottom {
  margin-top: 52px;
}
.footer-bottom-line {
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.06);
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}
.footer-bottom-accent {
  color: rgba(201, 168, 76, 0.38) !important;
  letter-spacing: 0.20em !important;
  text-transform: uppercase;
}
.footer-credit {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-align: center;
}
.footer-credit a {
  color: rgba(210, 178, 106, 0.84);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Page hero sections */
.about-hero,
.services-hero,
.contact-hero {
  position: relative;
  padding: 185px 0 120px;
  background: url("../images/Background.webp") center / cover no-repeat;
  overflow: hidden;
}

.contact-hero {
  padding-bottom: 95px;
}

.about-hero,
.contact-hero {
  animation: aboutHeroCameraMove 12s ease-in-out infinite alternate;
}

.about-hero::before,
.services-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.50) 100%),
    radial-gradient(circle at top center, rgba(210, 178, 106, 0.13), transparent 34%);
}

.about-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(980px, 86vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 178, 106, 0.45), transparent);
  transform: translateX(-50%);
}

.about-hero-inner,
.services-hero-inner,
.contact-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.82);
}

.services-hero-inner {
  margin-bottom: 55px;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
}

.about-hero-line,
.services-line,
.contact-hero-line {
  margin: 0 auto 28px;
}

.about-hero-text {
  max-width: 760px;
  margin: 0 auto;
}

.about-hero-text p,
.services-intro,
.contact-hero p {
  max-width: 760px;
  margin: 0 auto 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.85;
}

.about-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

/* About page section */

.team-banner {
  position: relative;
  padding: 96px 0 76px;
  background:
    linear-gradient(180deg, #111111 0%, #22201d 52%, var(--charcoal) 100%);
  text-align: center;
  overflow: hidden;
}

.team-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(210, 178, 106, 0.08), transparent 26%),
    radial-gradient(circle at bottom right, rgba(228, 196, 135, 0.05), transparent 26%);
  pointer-events: none;
}

.team-banner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(900px, 84vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 178, 106, 0.32), transparent);
  transform: translateX(-50%);
}

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

.team-banner h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
}

.team-banner p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.82;
}

.team-section {
  position: relative;
  padding: 110px 0 130px;
  background:
    linear-gradient(180deg, #0b0b0b 0%, #11100e 42%, #000000 100%);
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(210, 178, 106, 0.07), transparent 24%),
    radial-gradient(circle at bottom right, rgba(210, 178, 106, 0.04), transparent 22%);
  pointer-events: none;
}

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

.location-tabs {
  margin-bottom: 72px;
}

.location-tab {
  position: relative;
  width: 100%;
  height: 260px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: #111111;
  color: var(--white);
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.location-tab:hover,
.location-tab:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(210, 178, 106, 0.68);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.location-tab:focus-visible {
  outline: 3px solid rgba(210, 178, 106, 0.42);
  outline-offset: 3px;
}

.location-tab.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(210, 178, 106, 0.16), 0 20px 44px rgba(0, 0, 0, 0.42);
}

.location-tab img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.62);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.location-tab .location-image-torry {
  object-position: center 48%;
}

.location-tab .location-image-bridge {
  object-position: center 58%;
}

.location-tab .location-image-peterhead {
  object-position: center 42%;
}

.location-tab:hover img {
  transform: scale(1.045);
  filter: grayscale(70%) brightness(0.76);
}

.location-tab.active img {
  transform: scale(1.045);
  filter: grayscale(0%) brightness(1);
}

.location-tab-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.94) 100%);
  transition: background 0.35s ease;
}

.location-tab.active .location-tab-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0.80) 100%);
}

.location-tab-content {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.location-tab-content small {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.location-tab-content strong {
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 400;
}

.location-tab-content span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.location-tab.active .location-tab-content span::after {
  content: " - selected";
  color: var(--gold);
}

.barber-tab-content {
  min-height: 650px;
}

.team-location-heading {
  margin-bottom: 38px;
  text-align: center;
}

.team-location-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.team-location-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

.premium-barber-card {
  position: relative;
  height: 100%;
  padding: 24px;
  border: 1px solid rgba(210, 178, 106, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, var(--charcoal) 0%, #151515 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.premium-barber-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(210, 178, 106, 0.14), transparent 32%, transparent 70%, rgba(255, 255, 255, 0.04));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.premium-barber-card:hover {
  transform: translateY(-7px);
  border-color: rgba(210, 178, 106, 0.34);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.46);
}

.premium-barber-card:hover::after {
  opacity: 1;
}

.barber-image-wrap {
  position: relative;
  width: 100%;
  height: 360px;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  background: #151515;
  overflow: hidden;
}

.barber-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.36));
  pointer-events: none;
}

.barber-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(78%);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.premium-barber-card:hover .barber-image {
  transform: scale(1.045);
  filter: grayscale(16%);
}

.barber-profile-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(210, 178, 106, 0.13), transparent 48%),
    #1d1d1d;
}

.barber-profile-placeholder::after {
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.28));
}

.profile-head {
  position: absolute;
  top: 78px;
  width: 108px;
  height: 108px;
  border: 4px solid rgba(210, 178, 106, 0.72);
  border-radius: 50%;
  background: #2b2b2b;
  z-index: 2;
}

.profile-body {
  position: absolute;
  bottom: 34px;
  width: 210px;
  height: 142px;
  border: 4px solid rgba(210, 178, 106, 0.72);
  border-bottom: 0;
  border-radius: 110px 110px 18px 18px;
  background: #2b2b2b;
  z-index: 1;
}

.profile-woman .profile-head::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -17px;
  bottom: -24px;
  left: -17px;
  border: 11px solid rgba(210, 178, 106, 0.45);
  border-radius: 52% 52% 44% 44%;
}

.profile-man .profile-head::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 9px;
  left: 9px;
  height: 29px;
  border-radius: 35px 35px 8px 8px;
  background: rgba(210, 178, 106, 0.5);
}

.barber-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.barber-info h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}

.barber-info h4 {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.barber-divider {
  margin-bottom: 18px;
}

.barber-hover-text p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.78;
}

.press-section {
  position: relative;
  padding: 112px 0;
  background:
    linear-gradient(180deg, #121212 0%, #171512 100%);
  overflow: hidden;
}

.press-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 35%, rgba(210, 178, 106, 0.08), transparent 28%);
  pointer-events: none;
}

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

.press-paper-wrapper {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 18px 18px 14px;
  background: #f5f0e6;
  color: var(--text-dark);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.42);
  transform: rotate(-1.5deg);
}

.press-paper-wrapper::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(31, 31, 31, 0.14);
  pointer-events: none;
}

.press-paper-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(31, 31, 31, 0.12) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
  opacity: 0.18;
  pointer-events: none;
}

.press-image-wrapper {
  position: relative;
  border: 1px solid rgba(31, 31, 31, 0.18);
  overflow: hidden;
}

.press-image {
  display: block;
  width: 100%;
  filter: grayscale(100%) contrast(1.08);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.press-paper-wrapper:hover .press-image {
  transform: scale(1.02);
  filter: grayscale(70%) contrast(1.08);
}

.press-paper-caption {
  position: relative;
  z-index: 2;
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(31, 31, 31, 0.20);
  color: rgba(31, 31, 31, 0.72);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.press-content {
  max-width: 520px;
  color: var(--white);
}

.press-content h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
}

.press-line {
  margin-bottom: 25px;
}

.press-content p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.8;
}

.goals-section {
  position: relative;
  padding: 112px 0;
  background:
    linear-gradient(180deg, #000000 0%, #0d0d0d 100%);
  overflow: hidden;
}

.goals-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(210, 178, 106, 0.08), transparent 30%);
  pointer-events: none;
}

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

.goals-title {
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  text-transform: none;
}

.goals-line {
  margin: 20px auto 40px;
}

.goal-card {
  position: relative;
  height: 100%;
  padding: 40px 30px;
  border: 1px solid rgba(210, 178, 106, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, var(--dark-grey) 0%, #111111 100%);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.goal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 54px;
  height: 2px;
  background: var(--gold);
  opacity: 0.7;
}

.goal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(210, 178, 106, 0.38);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
}

.goal-card h3 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 400;
}

.goal-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.7;
}

/* About responsive section */

@media (max-width: 991.98px) {
  .about-hero,
  .services-hero,
  .contact-hero {
    padding: 150px 0 90px;
  }

  .about-hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .team-banner {
    padding: 80px 0 60px;
  }

  .team-section {
    padding: 90px 0 100px;
  }

  .barber-image-wrap {
    height: 320px;
  }
}

@media (max-width: 767.98px) {
  .about-hero,
  .services-hero,
  .contact-hero {
    padding: 130px 0 75px;
  }

  .about-hero-text p,
  .barber-hover-text p,
  .press-content p,
  .goal-card p {
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .team-banner {
    padding: 70px 0 50px;
  }

  .team-section,
  .press-section,
  .goals-section {
    padding: 75px 0;
  }

  .premium-barber-card {
    padding: 20px;
    border-radius: var(--radius-lg);
  }

  .barber-image-wrap {
    height: 280px;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
  }

  .barber-info h3 {
    font-size: 1.45rem;
  }

  .press-content {
    margin: auto;
    text-align: center;
  }

  .press-paper-wrapper {
    transform: none;
  }

  .press-line {
    margin-right: auto;
    margin-left: auto;
  }
}

/* Services page section */
.services-list {
  position: relative;
  z-index: 2;
}
.services-list {
  max-width: 1120px;
  margin: 0 auto;
}
.service-category {
  margin-bottom: 86px;
}
.service-category:last-child {
  margin-bottom: 0;
}
.service-category-heading {
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(210, 178, 106, 0.20);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.service-category-number {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}
.service-category-heading h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
}
.service-category-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.65;
}
.service-category-count {
  flex-shrink: 0;
  padding: 8px 12px;
  border: 1px solid rgba(210, 178, 106, 0.28);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.service-row {
  margin-bottom: 12px;
}
.service-bar {
  width: 100%;
  min-height: 76px;
  padding: 18px 24px 18px 28px;
  border: 1px solid var(--border-gold-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--dark-grey) 100%);
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-soft);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
}
.service-bar:hover {
  border-color: var(--border-gold-mid);
  background: linear-gradient(180deg, #353535 0%, #292929 100%);
}
.service-bar:focus-visible {
  outline: 3px solid rgba(210, 178, 106, 0.40);
  outline-offset: 3px;
}
.service-row.active .service-bar {
  border-color: var(--border-gold-mid);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-name {
  flex: 1;
  padding-right: 12px;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: none;
}
.service-name small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.06em;
}
.service-summary {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-duration {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.service-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 1px solid rgba(210, 178, 106, 0.25);
  border-radius: var(--radius-sm);
  background: rgba(210, 178, 106, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease;
}
.service-bar:hover .service-arrow {
  background: rgba(210, 178, 106, 0.18);
}
.service-row.active .service-arrow {
  transform: rotate(45deg);
}
.service-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.service-row.active .service-dropdown {
  max-height: 300px;
}
.service-dropdown-inner {
  padding: 24px 28px 26px;
  border-right: 1px solid var(--border-gold-mid);
  border-bottom: 1px solid var(--border-gold-mid);
  border-left: 1px solid var(--border-gold-mid);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}
.service-dropdown-inner p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.75;
}
.services-booking-btn-wrap {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  text-align: center;
}
/* Contact page section */
.contact-top-section {
  position: relative;
  padding: 90px 0 50px;
  background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
  overflow: hidden;
}
.contact-form-section {
  position: relative;
  padding: 50px 0 120px;
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  overflow: hidden;
}
.contact-top-section::before,
.contact-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(210, 178, 106, 0.06), transparent 22%),
    radial-gradient(circle at bottom right, rgba(210, 178, 106, 0.04), transparent 20%);
  pointer-events: none;
}
.contact-top-section .container,
.contact-form-section .container {
  position: relative;
  z-index: 2;
}
.contact-info-card,
.contact-form-card {
  border: 1px solid var(--border-gold-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--charcoal) 0%, #161616 100%);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}
.contact-address-box {
  height: 100%;
  padding: 38px 36px 40px;
  display: flex;
  flex-direction: column;
}
.contact-address-box h2,
.contact-social-card h2 {
  margin-bottom: 28px;
  font-weight: 400;
  text-transform: none;
}
.contact-locations {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-location-item {
  padding: 8px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-location-address {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.70rem;
  letter-spacing: 0.10em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.contact-map-link:hover {
  color: var(--gold);
}
.contact-map-link svg {
  flex-shrink: 0;
}
.contact-location-sep {
  width: 48px;
  height: 1px;
  margin: 4px 0 8px;
  background: rgba(201, 168, 76, 0.25);
}
.contact-social-card {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-social-card p,
.contact-form-intro p {
  color: rgba(255, 255, 255, 0.70);
}
.contact-social-links {
  margin: 26px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-social-link {
  padding: 18px 20px;
  border: 1px solid var(--border-gold-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.contact-social-link:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-mid);
}
.contact-social-link img {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  object-fit: contain;
}
.contact-social-link span {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.contact-extra-details {
  padding-top: 8px;
  border-top: 1px solid rgba(210, 178, 106, 0.12);
}
.contact-extra-details p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 300;
}
.contact-extra-details strong {
  color: var(--gold);
  font-weight: 500;
}
.contact-form-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 38px 34px;
}
.contact-form .form-label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cave-input {
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(210, 178, 106, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-size: 0.94rem;
  box-shadow: none !important;
}
.cave-input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}
.cave-input:focus {
  border-color: rgba(210, 178, 106, 0.45);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}
.cave-input option {
  color: #111111;
}
.cave-textarea {
  min-height: 180px;
  resize: vertical;
}
.cave-check {
  padding-top: 4px;
}
.cave-check .form-check-input {
  border: 1px solid rgba(210, 178, 106, 0.38);
  background-color: transparent;
  box-shadow: none !important;
}
.cave-check .form-check-input:checked {
  border-color: var(--gold);
  background-color: var(--gold);
}
.cave-check .form-check-label {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 300;
  line-height: 1.7;
}
/* Booking modal section */
.booking-modal {
  border-radius: 0;
  background: var(--black);
  color: var(--white);
}
.booking-modal .modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.booking-modal .modal-title {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.booking-modal .modal-body {
  padding: 0;
  background: var(--black);
}
.booking-info {
  padding: 26px 28px 24px;
  border-bottom: 1px solid rgba(210, 178, 106, 0.18);
  background:
    linear-gradient(180deg, rgba(210, 178, 106, 0.08), rgba(255, 255, 255, 0.02)),
    #101010;
}
.booking-info-subtitle {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.booking-info h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 400;
}
.booking-info p {
  max-width: 760px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.7;
}
.booking-info ul {
  max-width: 820px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
}
.booking-info li::marker {
  color: var(--gold);
}
#nearcut {
  width: 100%;
  min-height: 700px;
  background: var(--black);
}
.booking-loading {
  margin: 0;
  padding: 44px 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  text-align: center;
}
.modal-backdrop.show {
  opacity: 0.80;
}
/* Responsive tablet section */
@media (max-width: 991.98px) {
  .cave-navbar {
    padding: 14px 0;
    border-bottom: 1px solid rgba(210, 178, 106, 0.10);
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
  }
  .navbar-brand img {
    height: 72px;
  }
  .social-icons {
    display: none;
  }
  .navbar-collapse {
    margin-top: 16px;
    padding: 14px 18px;
    border: 1px solid rgba(210, 178, 106, 0.12);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.98) 0%, rgba(0, 0, 0, 0.96) 100%);
  }
  .nav-link {
    margin: 8px 0;
    padding: 8px 0;
  }
  .hero {
    min-height: auto;
    padding: 145px 0 90px;
  }
  .about-hero,
  .services-hero,
  .contact-hero {
    padding: 150px 0 90px;
  }
  .hero-content p br,
  .hero-content h1 br {
    display: none;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .booking-cta-text {
    text-align: center;
    align-items: center;
  }
  .booking-sub {
    text-align: center;
  }
  .booking-cta-right {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
  .booking-cta-divider {
    display: none;
  }
  .team-banner {
    padding: 80px 0 60px;
  }
  .team-section {
    padding: 90px 0 100px;
  }
  .barber-image-wrap {
    height: 320px;
  }
  .contact-top-section {
    padding: 75px 0 40px;
  }
  .contact-social-card {
    padding: 30px 24px;
  }
  .contact-form-card {
    padding: 30px 24px;
  }
  .site-footer {
    padding: 32px 20px 40px;
  }
}
/* Responsive mobile section */
@media (max-width: 767.98px) {
  .section-subtitle,
  .hero-subtitle,
  .reviews-subtitle,
  .about-home-subtitle,
  .about-hero-subtitle,
  .services-subtitle,
  .contact-hero-subtitle,
  .contact-section-subtitle,
  .team-banner-subtitle,
  .press-sub,
  .goals-sub {
    font-size: 10px;
    letter-spacing: 0.22em;
  }
  .hero,
  .about-hero,
  .services-hero,
  .contact-hero {
    padding: 130px 0 75px;
  }
  .hero-content p,
  .section-intro,
  .reviews-intro,
  .about-text,
  .about-hero-text p,
  .services-intro,
  .contact-hero p,
  .barber-hover-text p,
  .press-content p,
  .goal-card p,
  .contact-form-intro p,
  .contact-social-card p,
  .contact-location-address {
    font-size: 0.92rem;
    line-height: 1.72;
  }
  .services-section,
  .awards-section,
  .press-section,
  .goals-section {
    padding: 75px 0;
  }
  .section-heading,
  .reviews-heading {
    margin-bottom: 36px;
  }
  .service-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: var(--radius-lg);
  }
  .service-icon {
    width: 48px;
  }
  .service-card h3 {
    font-size: 0.95rem;
  }
  .service-card p {
    font-size: 0.90rem;
  }
  .about-section {
    min-height: auto;
    padding: 75px 0;
  }
  .reviews-title,
  .team-title {
    font-size: 2rem;
  }
  .reviews-rating-bar {
    flex-direction: column;
    gap: 16px;
    padding: 20px 18px;
    text-align: center;
  }
  .reviews-rating-sep {
    width: 40px;
    height: 1px;
  }
  .review-card {
    padding: 22px 18px 20px;
  }
  .booking-cta-bg {
    min-height: 420px;
    background-position: left center;
  }
  .team-banner {
    padding: 70px 0 50px;
  }
  .premium-barber-card {
    padding: 20px;
    border-radius: var(--radius-lg);
  }
  .barber-image-wrap {
    height: 280px;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
  }
  .barber-info h3 {
    font-size: 1.45rem;
  }
  .service-bar {
    min-height: auto;
    padding: 16px 16px 16px 18px;
    align-items: center;
    gap: 14px;
    border-radius: var(--radius-lg);
  }
  .service-row.active .service-bar {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .service-name {
    font-size: 0.84rem;
    letter-spacing: 0.03em;
  }
  .service-name small {
    font-size: 0.68rem;
  }
  .service-summary {
    gap: 9px;
  }
  .service-duration {
    font-size: 0.68rem;
  }
  .service-arrow {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
  .service-dropdown-inner {
    padding: 18px 18px 20px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .service-dropdown-inner p {
    font-size: 0.92rem;
    line-height: 1.72;
  }
  .service-category {
    margin-bottom: 62px;
  }
  .service-category-heading {
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .service-category-heading h2 {
    font-size: 1.8rem;
  }
  .service-category-count {
    margin-top: 2px;
  }
  .contact-address-box {
    padding: 22px 20px 24px;
  }
  .contact-social-card {
    padding: 24px 20px;
  }
  .contact-social-link {
    padding: 16px;
    border-radius: var(--radius-lg);
    gap: 16px;
  }
  .contact-social-link img {
    width: 52px;
    height: 52px;
  }
  .contact-form-card {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }
  .cave-input {
    min-height: 52px;
    border-radius: var(--radius-md);
  }
  .contact-submit-btn {
    width: 100%;
  }
  .press-content {
    margin: auto;
    text-align: center;
  }
  .press-paper-wrapper {
    transform: none;
  }
  .press-line {
    margin-right: auto;
    margin-left: auto;
  }
  .site-footer {
    padding: 40px 20px 28px;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Small phone section */
@media (max-width: 430px) {
  .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cave-navbar {
    padding: 10px 0;
  }

  .navbar-brand img {
    height: 58px;
  }

  .navbar-collapse {
    margin-top: 10px;
    padding: 10px 14px;
  }

  .nav-link {
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: 100svh;
    padding: 118px 0 64px;
    background-position: center top;
  }

  .hero-content h1 {
    font-size: clamp(2.05rem, 12vw, 2.65rem);
    letter-spacing: 0.02em;
    line-height: 1.14;
  }

  .hero-content p {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .btn-outline,
  .about-btn,
  .services-booking-btn,
  .contact-submit-btn,
  .booking-cta-btn {
    width: 100%;
    max-width: 340px;
    min-width: 0;
    min-height: 58px;
    padding: 15px 22px;
    font-size: 13px;
    letter-spacing: 0.13em;
  }

  .section-title,
  .reviews-title,
  .team-title,
  .contact-address-box h2,
  .contact-social-card h2,
  .contact-form-intro h2,
  .about-hero h1,
  .services-hero h1,
  .contact-hero h1 {
    font-size: clamp(2rem, 11vw, 2.7rem);
    letter-spacing: 0.02em;
  }

  .section-subtitle,
  .hero-subtitle,
  .about-home-subtitle,
  .about-hero-subtitle,
  .services-subtitle,
  .contact-hero-subtitle,
  .team-banner-subtitle,
  .reviews-subtitle,
  .contact-section-subtitle,
  .press-sub,
  .goals-sub,
  .booking-eyebrow {
    letter-spacing: 0.18em;
  }

  .awards-section,
  .services-section,
  .reviews-section,
  .team-section,
  .press-section,
  .goals-section,
  .contact-top-section,
  .contact-form-section {
    padding: 62px 0;
  }

  .about-hero,
  .services-hero,
  .contact-hero {
    padding: 118px 0 62px;
  }

  .about-section {
    padding: 68px 0;
    background-position: 58% center;
  }

  .about-section::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.74) 100%);
  }

  .service-card,
  .review-card,
  .goal-card,
  .contact-info-card,
  .contact-form-card,
  .premium-barber-card {
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  }

  .review-card {
    min-height: auto;
  }

  .reviews-rating-number {
    font-size: 2.35rem;
  }

  .booking-cta-bg {
    min-height: 440px;
    background-position: 35% center;
  }

  .booking-cta-overlay {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.54) 100%);
  }

  .booking-headline {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .booking-cta-right {
    width: 100%;
  }

  .team-banner {
    padding: 62px 0 46px;
  }

  .barber-image-wrap {
    height: 260px;
  }

  .press-paper-wrapper {
    max-width: 330px;
    padding: 12px 12px 10px;
  }

  .press-paper-caption {
    font-size: 0.66rem;
    letter-spacing: 0.05em;
  }

  .service-bar {
    padding: 15px;
    gap: 10px;
  }

  .service-category-heading {
    flex-direction: column;
    gap: 14px;
  }

  .service-category-count {
    align-self: flex-start;
  }

  .service-summary {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 7px;
  }

  .service-name {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }

  .service-arrow {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .contact-social-link img,
  .footer-social img {
    width: 44px;
    height: 44px;
  }

  .site-footer {
    padding: 34px 18px 26px;
    text-align: left;
  }

  .footer-top-bar {
    margin-bottom: 34px;
    gap: 14px;
  }

  .footer-top-bar span {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .booking-info {
    padding: 22px 18px 20px;
  }

  .booking-info-subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .booking-info h3 {
    font-size: 1.35rem;
    line-height: 1.25;
  }

  .booking-info p,
  .booking-info ul {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  #nearcut {
    min-height: 620px;
  }
}

@media (max-width: 360px) {
  .hero-content h1,
  .about-hero h1,
  .services-hero h1,
  .contact-hero h1 {
    font-size: 1.9rem;
  }

  .hero-content p,
  .about-hero-text p,
  .services-intro,
  .contact-hero p {
    font-size: 0.86rem;
  }

  .btn-outline,
  .about-btn,
  .services-booking-btn,
  .contact-submit-btn,
  .booking-cta-btn {
    max-width: 300px;
  }
}

/* Barber location responsive section */
@media (max-width: 991.98px) {
  .location-tab {
    height: 220px;
  }

  .location-tab-content {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .location-tab-content strong {
    font-size: 1.35rem;
  }
}

@media (max-width: 767.98px) {
  .location-tabs {
    margin-bottom: 50px;
  }

  .location-tab {
    height: 190px;
  }

  .barber-tab-content {
    min-height: 0;
  }

  .team-location-heading {
    margin-bottom: 28px;
  }

  .team-location-heading h2 {
    font-size: 2rem;
  }

  .profile-head {
    top: 55px;
    width: 88px;
    height: 88px;
  }

  .profile-body {
    bottom: 24px;
    width: 174px;
    height: 112px;
  }

  .app-download-section {
    padding: 58px 0;
    text-align: center;
  }

  .app-download-section::after {
    display: none;
  }

  .app-download-text h2,
  .app-download-text p {
    margin-right: auto;
    margin-left: auto;
  }

  .app-download-text h2 {
    font-size: 2rem;
  }

  .app-download-links {
    justify-content: center;
    gap: 10px;
  }

  .app-download-links a {
    width: 100%;
    max-width: 220px;
    min-height: 72px;
  }
}

/* Mobile and tablet layout fixes */
@media (max-width: 991.98px) {
  /* Services mobile background */
  .services-hero {
    background: #050505;
    isolation: isolate;
  }

  .services-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 0;
    height: 780px;
    background: url("../images/Background.webp") center top / cover no-repeat;
  }

  .services-hero::before {
    z-index: 1;
    background:
      linear-gradient(180deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.68) 20%,
        rgba(0, 0, 0, 0.82) 48%,
        #050505 780px,
        #050505 100%);
  }

  /* About location buttons */
  .location-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-right: 0;
    margin-bottom: 48px;
    margin-left: 0;
  }

  .location-tabs > div {
    width: auto;
    padding: 0;
  }

  .location-tab {
    min-height: 70px;
    height: 100%;
    padding: 12px 8px;
    border-radius: 6px;
    background: #1b1b1b;
    box-shadow: none;
    text-align: center;
  }

  .location-tab:hover,
  .location-tab:focus-visible {
    transform: none;
  }

  .location-tab.active {
    background: rgba(210, 178, 106, 0.16);
    box-shadow: inset 0 0 0 1px rgba(210, 178, 106, 0.28);
  }

  .location-tab img,
  .location-tab-overlay,
  .location-tab-content small,
  .location-tab-content > span {
    display: none;
  }

  .location-tab-content {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .location-tab-content strong {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }

  .location-tab.active .location-tab-content strong {
    color: var(--gold-light);
  }

  /* Services list */
  .service-category {
    margin-bottom: 58px;
  }

  .service-category-heading {
    align-items: flex-start;
    gap: 16px;
  }

  .service-category-heading h2 {
    font-size: clamp(1.65rem, 5vw, 2.2rem);
  }

  .service-category-heading p {
    font-size: 0.88rem;
  }

  .service-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 72px;
    padding: 14px 14px 14px 18px;
    gap: 12px;
  }

  .service-name {
    min-width: 0;
    padding: 0;
    color: var(--white);
    font-size: 0.88rem;
    line-height: 1.35;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .service-name small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.66rem;
    line-height: 1.3;
  }

  .service-summary {
    display: grid;
    grid-template-columns: auto 38px;
    align-items: center;
    gap: 9px;
  }

  .service-duration {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    line-height: 1.2;
    text-align: right;
  }

  .service-arrow {
    width: 38px;
    height: 38px;
    min-width: 38px;
    color: var(--gold);
    font-size: 23px;
  }

  /* App download banner */
  .app-download-section {
    padding: 58px 0;
    text-align: center;
  }

  .app-download-section::after {
    display: none;
  }

  .app-download-text h2,
  .app-download-text p {
    margin-right: auto;
    margin-left: auto;
  }

  .app-download-text h2 {
    font-size: clamp(1.8rem, 6vw, 2.35rem);
  }

  .app-download-links {
    justify-content: center;
    gap: 12px;
  }

  .app-download-links a {
    flex: 0 0 210px;
    width: 210px;
    max-width: 210px;
    height: 70px;
    min-height: 70px;
    overflow: hidden;
  }

  .app-download-links img,
  .app-download-links a:last-child img {
    display: block;
    width: 210px !important;
    max-width: 210px !important;
    height: 70px !important;
    object-fit: contain;
  }

  /* Footer credit */
  .footer-credit {
    margin-top: 18px;
    padding-top: 13px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.56rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }

  .footer-credit a {
    color: rgba(201, 168, 76, 0.56);
  }
}

@media (max-width: 575.98px) {
  .team-section {
    padding-top: 54px;
  }

  .location-tabs {
    margin-bottom: 38px;
  }

  .location-tab {
    min-height: 62px;
    padding: 9px 5px;
  }

  .location-tab-content strong {
    font-size: 0.68rem;
  }

  .team-location-heading {
    margin-bottom: 24px;
  }

  .service-category-heading {
    flex-direction: column;
    padding-bottom: 18px;
  }

  .service-category-count {
    align-self: flex-start;
    font-size: 0.62rem;
  }

  .service-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 13px 12px 13px 14px;
  }

  .service-name {
    font-size: 0.8rem;
  }

  .service-summary {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: end;
    gap: 5px;
  }

  .service-duration {
    font-size: 0.62rem;
  }

  .service-arrow {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .app-download-links {
    flex-direction: column;
    align-items: center;
  }

  .app-download-links a {
    flex-basis: 66px;
    width: 198px;
    max-width: 198px;
    height: 66px;
    min-height: 66px;
  }

  .app-download-links img,
  .app-download-links a:last-child img {
    width: 198px !important;
    max-width: 198px !important;
    height: 66px !important;
  }

  .footer-bottom-row {
    align-items: center;
    text-align: center;
  }

  .footer-credit {
    font-size: 0.54rem;
  }
}
