/* Prestige Homme — Birds-inspired */

html {
  scroll-behavior: smooth;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: #E85A3C;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #C94A30;
  transform: translateY(-1px);
}

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

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Header */
#header {
  background: #fff;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee */
.marquee-wrap {
  user-select: none;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-track span:nth-child(odd) {
  opacity: 0.9;
}

.marquee-track span:nth-child(even) {
  opacity: 0.5;
}

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

/* Image frame */
.img-frame {
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.15);
}

/* Service tiles */
.service-tile {
  padding: 2rem 1.5rem;
  border: 2px solid rgba(17, 17, 17, 0.08);
  border-radius: 1rem;
  background: #FAFAF8;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.service-tile:hover {
  border-color: #E85A3C;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
}

/* Price rows */
.price-row {
  transition: background 0.2s;
}

.price-row:hover {
  background: #F6F3EE;
}

/* Testimonials slider */
.testimonials-slider {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: testimonials-scroll 35s linear infinite;
  padding: 0 1.5rem;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex-shrink: 0;
  width: min(340px, 85vw);
  padding: 2rem;
  background: #F6F3EE;
  border-radius: 1rem;
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.testimonial-card .stars {
  color: #E85A3C;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: rgba(17, 17, 17, 0.75);
  font-size: 0.9375rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-card footer {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.4);
}

@keyframes testimonials-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.75rem)); }
}

/* Map */
.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* Mobile menu links */
.mobile-link {
  color: #111;
  transition: color 0.2s;
}

.mobile-link:hover {
  color: #E85A3C;
}

/* Selection */
::selection {
  background: rgba(232, 90, 60, 0.25);
  color: #111;
}

/* Focus */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #E85A3C;
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track,
  .testimonials-track { animation: none; }
}
