/* ============================================
   RuBrows — Head Spa & Permanent Makeup Studio
   Stylesheet (Mobile-First)
   ============================================ */

/* --- Design Tokens --- */
:root {
  --color-rose-gold: #B76E79;
  --color-rose-gold-light: #D4A0A7;
  --color-rose-gold-dark: #9C5A64;
  --color-gold: #C5A572;
  --color-gold-light: #D4BE8E;
  --color-charcoal: #2C2C2C;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #FFFFFF;
  --color-off-white: #FDF8F5;
  --color-bg-dark: #1A1A1A;
  --color-border: #E8E0DC;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --section-padding: clamp(3rem, 8vw, 6rem);
  --container-max: 1200px;
  --nav-height: 70px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;

  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 1rem;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.section-title--light {
  color: var(--color-white);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.badge--gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-white);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-align: center;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-rose-gold);
  color: var(--color-white);
  border: 2px solid var(--color-rose-gold);
}

.btn--primary:hover {
  background: var(--color-rose-gold-dark);
  border-color: var(--color-rose-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-charcoal);
  border: 2px solid var(--color-charcoal);
}

.btn--outline-dark:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
}

.btn--sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1001;
}

.navbar__logo img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.navbar__brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-gold);
  transition: color var(--transition);
}

.navbar.scrolled .navbar__brand {
  color: var(--color-charcoal);
}

.navbar__nav {
  display: none;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.navbar__link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  position: relative;
  padding: 0.25rem 0;
}

.navbar.scrolled .navbar__link {
  color: var(--color-text);
}

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

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

.navbar__cta {
  display: none;
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

.navbar__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.navbar__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  transition: all var(--transition);
}

.navbar.scrolled .navbar__toggle-bar {
  background: var(--color-charcoal);
}

.navbar__toggle.open .navbar__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--color-charcoal);
}

.navbar__toggle.open .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.open .navbar__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--color-charcoal);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--color-white);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__inner {
  text-align: center;
}

.mobile-menu__links {
  margin-bottom: 2rem;
}

.mobile-menu__link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-charcoal);
  padding: 0.75rem 0;
  transition: color var(--transition);
}

.mobile-menu__link:hover {
  color: var(--color-rose-gold);
}

.mobile-menu__cta {
  margin-top: 1rem;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #171313;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/images/hero-headspa.png');
  background-position: center;
  background-size: cover;
  filter: saturate(0.95) contrast(1.02);
  transform: translateX(0);
  will-change: transform;
}

.hero__slide--incoming {
  opacity: 0;
  visibility: hidden;
  transform: translateX(0);
}

.hero__slide--incoming.is-sliding {
  opacity: 1;
  visibility: visible;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(16, 12, 11, 0.28) 0%, rgba(16, 12, 11, 0.78) 72%),
    linear-gradient(180deg, rgba(18, 17, 17, 0.6), rgba(18, 17, 17, 0.84));
  pointer-events: none;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: clamp(44px, 5vw, 62px);
  height: clamp(44px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-full);
  background: rgba(13, 12, 12, 0.4);
  color: var(--color-white);
  cursor: pointer;
  display: grid;
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.hero__arrow:hover,
.hero__arrow:focus-visible {
  background: rgba(183, 110, 121, 0.68);
  border-color: rgba(255, 255, 255, 0.78);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.hero__arrow--prev {
  left: clamp(18px, 4vw, 52px);
}

.hero__arrow--next {
  right: clamp(18px, 4vw, 52px);
}

.hero .hero__content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  width: clamp(130px, 25vw, 200px);
  height: auto;
  margin: 0 auto 1.5rem;
  animation: heroFadeInUp 0.8s ease both;
  filter: brightness(1.1);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--color-white);
  max-width: 100%;
  margin-bottom: 0.75rem;
  animation: heroFadeInUp 0.8s ease 0.2s both;
  overflow-wrap: break-word;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold-light);
  margin-bottom: 0.5rem;
  animation: heroFadeInUp 0.8s ease 0.35s both;
}

.hero__location {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: heroFadeInUp 0.8s ease 0.45s both;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 2rem;
  animation: heroFadeInUp 0.8s ease 0.55s both;
}

.hero__ctas .btn {
  max-width: min(100%, 360px);
  white-space: normal;
}

.hero__trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: heroFadeInUp 0.8s ease 0.7s both;
}

.hero__stars {
  display: flex;
  gap: 0.2rem;
  color: var(--color-gold);
  font-size: 1rem;
}

.hero__rating {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: 0.05em;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  animation: bounce 2s ease infinite;
  z-index: 2;
}

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

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

/* ===========================
   HEAD SPA
   =========================== */
.headspa {
  padding: var(--section-padding) 0;
  background: var(--color-off-white);
}

.headspa__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.headspa__image {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.headspa__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.headspa__content {
  text-align: center;
}

.headspa__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.headspa__pricing {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-rose-gold);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* ===========================
   SERVICES
   =========================== */
.services {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.services__loading,
.services__error {
  grid-column: 1 / -1;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-off-white);
  color: var(--color-text-light);
  text-align: center;
}

.services__error a {
  color: var(--color-rose-gold);
  font-weight: 600;
}

.service-card--more {
  display: none;
}

.services__grid.show-more-services .service-card--more {
  display: block;
}

.services__more {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.service-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
}

.service-card__header {
  position: relative;
  height: 220px;
  overflow: hidden;
  cursor: pointer;
}

.service-card__icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rose-gold);
  font-size: 1rem;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

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

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

.service-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-off-white) 0%, #f0e8e4 50%, var(--color-off-white) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-rose-gold-light);
}

.service-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  color: var(--color-white);
  z-index: 1;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.service-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.service-card__toggle {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}

.service-card__toggle:hover {
  color: var(--color-white);
}

.service-card__toggle i {
  transition: transform var(--transition);
}

.service-card__toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.service-card__details {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.service-card__details.open {
  padding: 1.5rem;
  max-height: none;
}

.service-card__details .btn {
  margin-top: 1rem;
  width: 100%;
}

/* Price List */
.price-list {
  margin: 0;
}

.price-list__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: flex-start;
  column-gap: 1rem;
  row-gap: 0.35rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.price-list__item:last-child {
  border-bottom: none;
}

.price-list__service {
  grid-column: 1;
  min-width: 0;
}

.price-list__name {
  display: block;
  color: var(--color-text);
  font-weight: 500;
}

.price-list__duration {
  display: block;
  margin-top: 0.15rem;
  color: var(--color-text-light);
  font-size: 0.78rem;
}

.price {
  grid-column: 2;
  justify-self: end;
  text-align: right;
  font-weight: 600;
  color: var(--color-rose-gold);
  white-space: nowrap;
}

.variant-list {
  grid-column: 1 / -1;
  margin-top: 0.1rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--color-border);
}

.variant-list__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  column-gap: 1rem;
  padding: 0.35rem 0;
  color: var(--color-text-light);
  font-size: 0.78rem;
}

.variant-list__name {
  min-width: 0;
  line-height: 1.45;
}

.variant-list__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  color: var(--color-rose-gold-dark);
  line-height: 1.45;
}

.variant-list__price {
  font-weight: 500;
  white-space: nowrap;
}

.variant-list__duration {
  color: var(--color-text-light);
}

/* ===========================
   ABOUT
   =========================== */
.about {
  padding: var(--section-padding) 0;
  background: var(--color-off-white);
}

.about__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.about__image {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--color-gold);
  border-radius: var(--radius-md);
  pointer-events: none;
  opacity: 0.4;
}

.about__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about__content {
  text-align: center;
}

.about__crown {
  color: var(--color-gold);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.about__role {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-rose-gold);
  margin-bottom: 1.5rem;
}

.about__credentials {
  text-align: left;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.about__credentials li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

.about__credentials li i {
  color: var(--color-gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.about__bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   REVIEWS
   =========================== */
.reviews {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.reviews__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.reviews__score {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1;
}

.reviews__stars {
  display: flex;
  gap: 0.2rem;
  color: var(--color-gold);
  font-size: 1.25rem;
}

.reviews__count {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 400;
}

.reviews__carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.reviews__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  gap: 1.5rem;
}

.review-card {
  flex: 0 0 100%;
  min-width: 0;
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.review-card__stars {
  display: flex;
  gap: 0.15rem;
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.review-card__author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.review-card__name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-charcoal);
}

.review-card__source {
  font-size: 0.8rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.review-card__source i {
  color: var(--color-gold);
}

.review-card__link {
  flex-shrink: 0;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-rose-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color var(--transition), color var(--transition);
}

.review-card__link:hover {
  border-color: var(--color-rose-gold);
  color: var(--color-rose-gold-dark);
}

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.reviews__arrow {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: all var(--transition);
  background: var(--color-white);
}

.reviews__arrow:hover {
  border-color: var(--color-rose-gold);
  color: var(--color-rose-gold);
}

.reviews__dots {
  display: flex;
  gap: 0.5rem;
}

.reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.reviews__dot.active {
  background: var(--color-rose-gold);
  width: 28px;
  border-radius: 5px;
}

.reviews__all-link {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-rose-gold);
  transition: color var(--transition);
}

.reviews__all-link:hover {
  color: var(--color-rose-gold-dark);
}

.reviews__all-link i {
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

/* ===========================
   GIFT CARDS
   =========================== */
.giftcards {
  padding: var(--section-padding) 0;
  background: var(--color-off-white);
  position: relative;
  overflow: hidden;
}

.giftcards::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(197, 165, 114, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.giftcards__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.giftcards__top {
  max-width: 560px;
}

.giftcards__top .section-title {
  margin-bottom: 0.75rem;
}

.giftcards__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.giftcards__visual {
  perspective: 900px;
}

.gift-card-link {
  display: block;
  text-decoration: none;
}

.gift-card-design {
  width: 360px;
  height: 220px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-rose-gold) 0%, var(--color-gold) 55%, var(--color-rose-gold-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(183, 110, 121, 0.25), 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: rotateY(-6deg) rotateX(4deg);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  cursor: pointer;
}

.gift-card-link:hover .gift-card-design {
  transform: rotateY(0deg) rotateX(0deg) scale(1.04);
  box-shadow: 0 35px 80px rgba(183, 110, 121, 0.3), 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gift-card-design__logo {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
  filter: brightness(10);
}

.gift-card-design__brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.gift-card-design__label {
  font-size: 0.8rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-top: 0.3rem;
  opacity: 0.85;
}

.gift-card-design__cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.gift-card-link:hover .gift-card-design__cta {
  opacity: 1;
  transform: translateY(0);
}

.gift-card-design__shimmer {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translate(-30%, -30%) rotate(25deg); }
  100% { transform: translate(30%, 30%) rotate(25deg); }
}

.giftcards__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.giftcards__sub {
  font-size: 0.85rem;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
}

/* ===========================
   FAQ PAGE
   =========================== */
.faq-page .navbar,
.navbar--solid {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.faq-page .navbar__brand,
.navbar--solid .navbar__brand {
  color: var(--color-charcoal);
}

.faq-page .navbar__link,
.navbar--solid .navbar__link {
  color: var(--color-text);
}

.faq-page .navbar__toggle-bar,
.navbar--solid .navbar__toggle-bar {
  background: var(--color-charcoal);
}

.faq-hero {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  background:
    linear-gradient(135deg, rgba(253, 248, 245, 0.97), rgba(255, 255, 255, 0.94)),
    url('../assets/images/permanent-makeup-service.png') center/cover;
  border-bottom: 1px solid var(--color-border);
}

.faq-hero__inner {
  max-width: 860px;
  text-align: center;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 7vw, 4.25rem);
  line-height: 1.05;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.faq-hero__lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
}

.faq-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}

.faq-content {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.faq-layout {
  display: grid;
  gap: 2rem;
}

.faq-sidebar {
  display: grid;
  gap: 0.6rem;
  align-self: start;
}

.faq-sidebar a {
  display: block;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--color-white);
}

.faq-sidebar a:hover {
  color: var(--color-rose-gold);
  border-color: var(--color-rose-gold-light);
  transform: translateY(-1px);
}

.faq-groups {
  display: grid;
  gap: 1.5rem;
}

.faq-group,
.faq-cta {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-group__header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-border);
}

.faq-group__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-white);
  color: var(--color-rose-gold);
  box-shadow: var(--shadow-sm);
}

.faq-group h2,
.faq-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 4vw, 2rem);
  color: var(--color-charcoal);
  line-height: 1.2;
}

.faq-group__header p,
.faq-cta p {
  color: var(--color-text-light);
  margin-top: 0.35rem;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  position: relative;
  list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-off-white);
  color: var(--color-rose-gold);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.faq-cta {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--color-off-white), var(--color-white));
}

.faq-cta .btn {
  margin-top: 1.4rem;
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  padding: var(--section-padding) 0;
  background: var(--color-charcoal);
  color: var(--color-white);
}

.contact__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

#contact-heading {
  font-family: var(--font-body);
  font-size: 25px;
}

.contact__detail i {
  color: var(--color-gold);
  margin-top: 0.2rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.contact__detail a {
  color: var(--color-white);
  transition: color var(--transition);
}

.contact__detail a:hover {
  color: var(--color-gold);
}

.contact__hours {
  margin-top: 1.5rem;
}

.contact__hours-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.contact__hours-table {
  border-collapse: collapse;
}

.contact__hours-table td {
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

.contact__hours-table td:first-child {
  padding-right: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact__hours-table td:last-child {
  color: var(--color-white);
  font-weight: 500;
}

.contact__socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact__social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-white);
  transition: all var(--transition);
}

.contact__social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-3px);
}

.contact__map {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact__map iframe {
  display: block;
  width: 100%;
  min-height: 300px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--color-bg-dark);
  padding: 2.5rem 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__logo {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: brightness(0.8);
}

.footer__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-gold);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.footer__nav a {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--color-gold);
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__socials a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  transition: color var(--transition);
}

.footer__socials a:hover {
  color: var(--color-gold);
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===========================
   FLOATING CALL BUTTON
   =========================== */
.float-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-rose-gold);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.4);
  z-index: 900;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  white-space: nowrap;
  animation: pulse 3s ease-in-out infinite;
}

.float-call__text {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.float-call:hover {
  width: auto;
  padding: 0 1.5rem;
  border-radius: 28px;
  animation: none;
}

.float-call:hover .float-call__text {
  max-width: 100px;
  opacity: 1;
  margin-left: 0.5rem;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(183, 110, 121, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(183, 110, 121, 0.6), 0 0 0 8px rgba(183, 110, 121, 0.1); }
}

/* ===========================
   RESPONSIVE — Tablet (768px+)
   =========================== */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .hero__ctas {
    flex-direction: row;
  }

  .hero__trust {
    flex-direction: row;
    gap: 0.75rem;
  }

  .faq-hero__actions {
    flex-direction: row;
  }

  /* Head Spa */
  .headspa__inner {
    flex-direction: row;
    gap: 3rem;
  }

  .headspa__image {
    flex: 1;
    max-width: 50%;
  }

  .headspa__image img {
    height: 400px;
  }

  .headspa__content {
    flex: 1;
    text-align: left;
  }

  .headspa__text {
    margin-left: 0;
  }

  /* Services */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About */
  .about__inner {
    flex-direction: row;
    gap: 3rem;
  }

  .about__image {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .about__content {
    flex: 1;
    text-align: left;
  }

  .about__credentials {
    margin-left: 0;
  }

  .about__bio {
    margin-left: 0;
  }

  /* Reviews */
  .review-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  /* Gift Cards — stays centered column on all sizes */

  /* Contact */
  .contact__inner {
    flex-direction: row;
    gap: 3rem;
  }

  .contact__info {
    flex: 1;
  }

  .contact__map {
    flex: 1;
  }
}

/* ===========================
   RESPONSIVE — Desktop (1024px+)
   =========================== */
@media (min-width: 1024px) {
  .navbar__nav {
    display: block;
  }

  .navbar__links {
    gap: 1rem;
  }

  .navbar__link {
    font-size: 0.78rem;
  }

  .navbar__cta {
    display: inline-block;
    padding: 0.55rem 1.15rem;
  }

  .navbar__toggle {
    display: none;
  }

  /* Services */
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
  }

  .faq-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 1.5rem);
  }

  /* Reviews */
  .review-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

/* ===========================
   RESPONSIVE — Large Desktop (1440px+)
   =========================== */
@media (min-width: 1440px) {
  .container {
    padding: 0;
  }
}

/* ===========================
   REDUCED MOTION
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 480px) {
  .hero__arrow {
    top: auto;
    bottom: 5.25rem;
  }

  .price-list__item {
    grid-template-columns: 1fr;
    row-gap: 0.25rem;
  }

  .price {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }

  .variant-list__item {
    grid-template-columns: 1fr;
    row-gap: 0.1rem;
  }

  .variant-list__meta {
    align-items: flex-start;
    text-align: left;
  }

  .review-card__author {
    align-items: flex-start;
    flex-direction: column;
  }
}
