/* =========================================
   beTobe – Stylesheet v2.0
   Premium Beauty Studio
   ========================================= */

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

:root {
  --pink: #F16085;
  --pink-dark: #d94d72;
  --pink-light: #fdf0f3;
  --pink-glow: rgba(241, 96, 133, 0.2);
  --dark: #2D2E2F;
  --dark-card: rgba(255, 255, 255, 0.06);
  --dark-border: rgba(255, 255, 255, 0.08);
  --white: #FFFFFF;
  --off-white: #fafafa;
  --text: #1a1a1a;
  --text-secondary: #555555;
  --text-on-dark: rgba(255, 255, 255, 0.78);
  --border: rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Figtree', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

p, li, blockquote {
  font-family: 'Figtree', -apple-system, sans-serif;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

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

.btn--primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 96, 133, 0.3);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--white {
  background: var(--white);
  color: var(--pink);
  border-color: var(--white);
  font-weight: 700;
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 0.95rem;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.navbar__logo img {
  height: 34px;
  width: auto;
  transition: filter var(--transition);
}

/* Logo white on hero, dark after scroll */
.navbar:not(.scrolled) .navbar__logo img {
  filter: brightness(0) invert(1);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.navbar:not(.scrolled) .navbar__link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar:not(.scrolled) .navbar__link:hover,
.navbar:not(.scrolled) .navbar__link.active {
  color: var(--white);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: width var(--transition);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__link:hover {
  color: var(--pink);
}

.navbar__link.active {
  color: var(--pink);
}

.navbar__cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.navbar:not(.scrolled) .navbar__cta {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.navbar:not(.scrolled) .navbar__cta:hover {
  background: var(--white);
  color: var(--pink);
  border-color: var(--white);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.navbar:not(.scrolled) .navbar__burger span {
  background: var(--white);
}

.navbar__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}
.navbar__burger.active span:nth-child(2) {
  opacity: 0;
}
.navbar__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  transform: translateY(-110%);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 4px;
}

.mobile-nav__links a {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Bricolage Grotesque', sans-serif;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav__links .btn {
  margin-top: 24px;
  text-align: center;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30, 30, 30, 0.88) 0%,
    rgba(241, 96, 133, 0.55) 40%,
    rgba(241, 96, 133, 0.25) 70%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  max-width: 620px;
  margin-left: 0;
  margin-right: auto;
  padding-left: 12%;
}

.hero__label {
  display: inline-block;
  font-family: 'Figtree', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
}

.hero__title {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 36px;
  letter-spacing: -2px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- SECTIONS --- */
.section {
  padding: 110px 0;
}

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

.section--soft {
  background: var(--off-white);
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section__header--light .section__title { color: var(--white); }
.section__header--light .section__subtitle { color: var(--text-on-dark); }

.section__label {
  display: inline-block;
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--pink);
  margin-bottom: 12px;
}

.section__label--light {
  color: var(--pink);
}

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- STATS BAR (below hero) --- */
.stats-bar {
  background: var(--dark);
  padding: 48px 0;
  border-bottom: 1px solid var(--dark-border);
}

.stats-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 48px;
  text-align: center;
}

.stats-bar__top {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stats-bar__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.stats-bar__number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
}

.stats-bar__suffix {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--pink);
}

.stats-bar__stars {
  color: var(--pink);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.stats-bar__label {
  font-size: 0.85rem;
  color: var(--text-on-dark);
  white-space: nowrap;
}

.stats-bar__g-logo {
  flex-shrink: 0;
  margin-right: 2px;
}

.stats-bar__item--google .stats-bar__g-logo path {
  fill: var(--white);
}

@media (max-width: 768px) {
  .stats-bar { padding: 32px 0; }
  .stats-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    justify-items: center;
  }
  .stats-bar__item { padding: 0; }
  .stats-bar__divider { display: none; }
  .stats-bar__number { font-size: 2rem; }
  .stats-bar__suffix { font-size: 1rem; }
}

/* --- SERVICES --- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.06);
}

.service-card__body {
  padding: 28px 28px 32px;
}

.service-card__title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.65;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pink);
  transition: gap var(--transition);
}

.service-card__link svg {
  transition: transform var(--transition);
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}

/* --- VALUES --- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 96, 133, 0.2);
  box-shadow: var(--shadow-lg);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.value-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-card__title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.value-card__text {
  font-size: 0.85rem;
  color: var(--text-on-dark);
  line-height: 1.55;
}

/* --- ABOUT --- */
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
}


.about__content .section__label,
.about__content .section__title {
  text-align: left;
}

.about__content .section__title {
  margin-bottom: 24px;
}

.about__lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 16px;
}

.about__content p {
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.about__content .btn {
  margin-top: 16px;
}

/* --- STATS BAND --- */
.stats-band {
  background: var(--dark);
  padding: 56px 0;
}

.stats-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.stat {
  text-align: center;
}

.stat__divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
}

.stat__number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
}

.stat__suffix {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pink);
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-on-dark);
  margin-top: 6px;
}

/* --- TEAM --- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  transition: transform var(--transition);
}

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

.team-card__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.05);
}

.team-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card__img-wrap img {
  transform: scale(1.05);
}

.team-card__name {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 2px;
}

.team-card__role {
  font-size: 0.82rem;
  color: var(--text-on-dark);
}

/* --- GOOGLE SCORE (dark variant) --- */
.google-score {
  text-align: center;
  margin-bottom: 48px;
}

.google-score__badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dark-border);
  border-radius: 60px;
  padding: 14px 32px;
}

.google-score__logo {
  flex-shrink: 0;
  color: var(--white);
}

.google-score__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-score__top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-score__stars {
  color: var(--pink);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.google-score__number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.google-score__count {
  font-size: 0.82rem;
  color: var(--text-on-dark);
  text-align: left;
}

/* --- REVIEWS MARQUEE (auto-scroll) --- */
.reviews-marquee {
  position: relative;
  overflow: hidden;
}

.reviews-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}

.reviews-marquee__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

.reviews-marquee__track {
  display: flex;
  gap: 20px;
  animation: marqueeScroll 45s linear infinite;
  width: max-content;
}

.reviews-marquee__track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex: 0 0 360px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(241, 96, 133, 0.2);
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  line-height: 1.7;
  margin-bottom: 14px;
}

.review-card__author {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink);
}

/* --- FAQ --- */
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.faq__heading .section__label,
.faq__heading .section__title {
  text-align: left;
}

.faq__heading-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.65;
}

.faq__heading-text a {
  color: var(--pink);
  font-weight: 600;
}

.faq__heading-text a:hover {
  text-decoration: underline;
}

.faq__image {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq__image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
}

.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: var(--pink-glow);
}

.faq-item__question {
  padding: 20px 24px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-fast);
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--pink);
  font-weight: 400;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pink-light);
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item[open] .faq-item__question {
  color: var(--pink);
}

.faq-item__answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- CONTACT --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  background: rgba(241, 96, 133, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
}

.contact-item h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.85rem;
  color: var(--text-on-dark);
  margin-bottom: 4px;
}

.contact-item a {
  font-size: 0.88rem;
  color: var(--pink);
  font-weight: 500;
}

.contact-item a:hover { text-decoration: underline; }

.contact__map {
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--dark-border);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
}

/* --- CTA BAND --- */
.cta-band {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-band__inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-band__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-band__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* --- FOOTER --- */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand img {
  height: 60px;
  width: auto;
  margin-bottom: 12px;
  opacity: 0.7;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.footer__links,
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links h5,
.footer__social h5 {
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__links a,
.footer__social a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__links a:hover,
.footer__social a:hover {
  color: var(--pink);
}

.footer__hours h5 {
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.hours-table td {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--pink);
  font-weight: 500;
  white-space: nowrap;
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(241, 96, 133, 0.3);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(241, 96, 133, 0.4);
}

/* --- CAREER CTA (on index) --- */
.career-cta {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  padding: 64px 0;
}

.career-cta .section__label {
  color: rgba(255, 255, 255, 0.7);
}

.career-cta .section__title {
  color: var(--white);
}

.career-cta__text p {
  color: rgba(255, 255, 255, 0.8);
}

.career-cta .btn--primary {
  background: var(--white);
  color: var(--pink);
  border-color: var(--white);
}

.career-cta .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.career-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.career-cta__text .section__title {
  margin-bottom: 6px;
}

.career-cta__text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .career-cta__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* --- ABOUT (light bg) --- */

/* --- LOYALTY PROGRAM --- */
.loyalty__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.loyalty__title {
  color: var(--white);
}

.loyalty__desc {
  font-size: 1.05rem;
  color: var(--text-on-dark);
  margin-bottom: 28px;
  line-height: 1.7;
}

.loyalty__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.loyalty-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.loyalty-step:hover {
  border-color: rgba(241, 96, 133, 0.2);
}

.loyalty-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loyalty-step__num--vip {
  background: linear-gradient(135deg, var(--pink), #c94070);
  font-size: 1.2rem;
}

.loyalty-step--vip {
  border-color: var(--pink);
  background: rgba(241, 96, 133, 0.06);
}

.loyalty-step__title {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}

.loyalty-step__text {
  font-size: 0.85rem;
  color: var(--text-on-dark);
  line-height: 1.55;
}

/* --- CAREER --- */
.career {
  border-top: 1px solid var(--dark-border);
}

.career__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.career__title {
  color: var(--white);
}

.career__title em {
  color: var(--pink);
  font-style: italic;
}

.career__desc {
  font-size: 1rem;
  color: var(--text-on-dark);
  margin-bottom: 28px;
  line-height: 1.65;
}

.career__perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.career-perk {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
}

.career-perk__emoji {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.career-perk h5 {
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 3px;
}

.career-perk p {
  font-size: 0.78rem;
  color: var(--text-on-dark);
  line-height: 1.5;
}

/* Career form */
.career__form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.career__form-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 24px;
}

.career-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.career-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.career-form__field label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-on-dark);
}

.career-form__field input,
.career-form__field select,
.career-form__field textarea {
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  color: var(--white);
  outline: none;
  transition: border-color var(--transition-fast);
}

.career-form__field input::placeholder,
.career-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.career-form__field input:focus,
.career-form__field select:focus,
.career-form__field textarea:focus {
  border-color: var(--pink);
}

.career-form__field select {
  appearance: none;
  cursor: pointer;
}

.career-form__field select option {
  background: var(--dark);
  color: var(--white);
}

.career-form__submit {
  width: 100%;
  margin-top: 8px;
}

.career-form__success {
  text-align: center;
  color: #34A853;
  font-weight: 600;
  margin-top: 16px;
  font-size: 0.95rem;
}

/* (carousel arrows removed - using auto-scroll marquee now) */

/* --- COOKIE BANNER (modal overlay) --- */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-banner__inner {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
}

.cookie-banner__text {
  font-size: 0.92rem;
  color: var(--text-on-dark);
  line-height: 1.65;
  margin-bottom: 28px;
}

.cookie-banner__text a {
  color: var(--pink);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner__accept {
  padding: 14px 28px;
  font-size: 0.9rem;
  width: 100%;
}

.cookie-banner__reject {
  background: none;
  border: 1px solid var(--dark-border);
  color: var(--text-on-dark);
  padding: 12px 20px;
  border-radius: 50px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 100%;
}

.cookie-banner__reject:hover {
  border-color: var(--white);
  color: var(--white);
}

/* --- SCROLL ANIMATIONS --- */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(3, 1fr); }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__heading .section__label,
  .faq__heading .section__title { text-align: center; }
  .faq__heading-text { text-align: center; }
}

@media (max-width: 768px) {
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
  .navbar.scrolled .navbar__burger span { background: var(--text); }

  .hero__title {
    font-size: clamp(2.6rem, 12vw, 4rem);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  }
  .hero__content { padding: 120px 24px 80px; }
  .hero__scroll { display: none; }
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(30, 30, 30, 0.5) 0%,
      rgba(30, 30, 30, 0.7) 40%,
      rgba(20, 20, 20, 0.85) 100%
    );
  }
  .hero__label {
    font-size: 0.65rem;
    padding: 5px 12px;
    letter-spacing: 2px;
  }

  .section { padding: 80px 0; }

  .services__grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card__img-wrap { height: 200px; }

  .values__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .value-card { padding: 28px 18px; }

  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__image { max-width: 380px; margin: 0 auto; }
  .about__content .section__label,
  .about__content .section__title { text-align: center; }
  .about__content { text-align: center; }

  .stats-band__inner { flex-direction: column; gap: 28px; }
  .stat__divider { width: 60px; height: 1px; }
  .stat__number { font-size: 2.5rem; }

  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .review-card { flex: 0 0 300px; }
  .google-score__badge { padding: 12px 20px; }
  .reviews-marquee__fade { width: 40px; }

  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact__map { height: 260px; }

  .loyalty__inner { grid-template-columns: 1fr; gap: 40px; }
  .career__inner { grid-template-columns: 1fr; gap: 40px; }
  .career__perks { grid-template-columns: 1fr; }
  .career-form__row { grid-template-columns: 1fr; }
  .career__form { padding: 24px; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .values__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}
