﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e0c06a;
  --gold-dark: #a07830;
  --bg: #0d0b09;
  --bg2: #161210;
  --bg3: #1e1814;
  --bg4: #2a2018;
  --text: #e8ddd0;
  --text-muted: #8a7a6a;
  --border: #2e2218;
  --radius: 4px;
  --transition: .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.section-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .75rem;
  animation: fadeInDown 0.6s ease;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}
.section-lead {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  animation: fadeIn 1s ease;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .8rem; }
.btn-gold { background: var(--gold); color: #0d0b09; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 25px rgba(201,168,76,0.3); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: #0d0b09; transform: translateY(-2px); }
.btn-gold-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn-gold-outline:hover { background: rgba(201,168,76,.1); transform: translateY(-2px); }

.reveal { 
  opacity: 0; 
  transform: translateY(40px); 
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); 
}
.reveal.is-visible { opacity: 1; transform: none; }

.img-placeholder {
  width: 100%; height: 100%;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px dashed var(--border);
  transition: all 0.4s ease;
}
.img-placeholder:hover {
  background: var(--bg4);
  border-color: var(--gold);
  transform: scale(1.02);
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,11,9,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  animation: slideDown 0.6s ease;
}
.site-header.scrolled { 
  border-color: var(--border); 
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
  background: rgba(13,11,9,.98);
}

.header-topbar {
  display: flex; align-items: center; gap: 1.5rem;
  padding: .4rem 1.5rem;
  background: var(--bg2);
  font-size: .78rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  animation: fadeIn 0.8s ease;
}
.topbar-phone { color: var(--gold); font-weight: 500; transition: var(--transition); }
.topbar-phone:hover { color: var(--gold-light); transform: scale(1.05); }
.topbar-hours { margin-left: auto; }

.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: .9rem; padding-bottom: .9rem;
}

.logo { 
  display: flex; 
  flex-direction: column; 
  line-height: 1;
  transition: transform 0.3s ease;
}
.logo:hover { transform: scale(1.05); }
.logo-main { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.4rem; 
  font-weight: 900; 
  color: var(--text); 
  letter-spacing: .08em;
  animation: fadeInLeft 0.6s ease;
}
.logo-sub { 
  font-size: .6rem; 
  font-weight: 600; 
  letter-spacing: .35em; 
  color: var(--gold); 
  text-transform: uppercase;
  animation: fadeInLeft 0.8s ease;
}

.main-nav { 
  display: flex; 
  gap: 1.75rem; 
  margin-left: auto;
}
.main-nav a { 
  font-size: .85rem; 
  font-weight: 500; 
  letter-spacing: .05em; 
  color: var(--text-muted); 
  transition: all 0.3s ease; 
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.main-nav a:hover { color: var(--gold); transform: translateY(-2px); }
.main-nav a:hover::after { width: 100%; }

.header-cta { margin-left: 1rem; }

.nav-toggle-input { display: none; }
.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer; 
  padding: .5rem; 
  margin-left: auto;
}
.hamburger span { 
  display: block; 
  width: 24px; 
  height: 2px; 
  background: var(--text); 
  transition: all 0.3s ease;
}
.nav-toggle-input:checked ~ .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-input:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle-input:checked ~ .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 120px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }

.animated-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--bg) 0%, #0f0d0a 50%, var(--bg) 100%);
}
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(201,168,76,0.03), rgba(201,168,76,0.08));
  backdrop-filter: blur(1px);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  will-change: transform;
}

.shape-1 {
  width: 300px; height: 300px;
  top: 10%; left: -5%;
  animation: float1 25s infinite;
}
.shape-2 {
  width: 200px; height: 200px;
  top: 60%; right: -3%;
  animation: float2 30s infinite;
}
.shape-3 {
  width: 150px; height: 150px;
  top: 30%; left: 70%;
  animation: float3 20s infinite;
}
.shape-4 {
  width: 400px; height: 400px;
  top: -10%; right: 20%;
  animation: float4 35s infinite;
}
.shape-5 {
  width: 100px; height: 100px;
  bottom: 20%; left: 20%;
  animation: float5 18s infinite;
}
.shape-6 {
  width: 250px; height: 250px;
  bottom: -5%; right: 40%;
  animation: float6 28s infinite;
}

@keyframes float1 {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(30px, -20px) rotate(90deg) scale(1.1); }
  50% { transform: translate(-20px, 40px) rotate(180deg) scale(0.9); }
  75% { transform: translate(40px, 20px) rotate(270deg) scale(1.05); }
  100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

@keyframes float2 {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(-40px, 30px) rotate(120deg) scale(1.2); }
  66% { transform: translate(25px, -35px) rotate(240deg) scale(0.8); }
  100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

@keyframes float3 {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(-30px, -40px) rotate(180deg) scale(1.3); }
  100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

@keyframes float4 {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  20% { transform: translate(20px, 30px) rotate(72deg) scale(1.1); }
  40% { transform: translate(-30px, -10px) rotate(144deg) scale(0.9); }
  60% { transform: translate(35px, -25px) rotate(216deg) scale(1.15); }
  80% { transform: translate(-15px, 40px) rotate(288deg) scale(0.95); }
  100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

@keyframes float5 {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  40% { transform: translate(50px, -30px) rotate(144deg) scale(1.4); }
  80% { transform: translate(-25px, 35px) rotate(288deg) scale(0.7); }
  100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

@keyframes float6 {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  30% { transform: translate(-35px, -20px) rotate(108deg) scale(1.2); }
  60% { transform: translate(40px, 45px) rotate(216deg) scale(0.85); }
  100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

.hero-img-placeholder { width: 100%; height: 100%; position: relative; z-index: 1; }
.hero-img-placeholder svg { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(105deg, rgba(13,11,9,.92) 40%, rgba(13,11,9,.5) 100%); 
  z-index: 2;
  animation: fadeIn 1.2s ease;
}

.hero-inner { position: relative; z-index: 3; padding: 4rem 1.5rem; }
.hero-text { max-width: 600px; }
.hero-eyebrow { 
  font-size: .8rem; 
  font-weight: 600; 
  letter-spacing: .25em; 
  color: var(--gold); 
  text-transform: uppercase; 
  margin-bottom: 1.25rem;
  animation: fadeInDown 0.8s ease;
}
.hero-headline { 
  font-family: 'Playfair Display', serif; 
  font-size: clamp(3rem, 7vw, 5.5rem); 
  font-weight: 900; 
  line-height: 1.0; 
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}
.hero-headline em { 
  font-style: italic; 
  color: var(--gold);
  display: inline-block;
  animation: glow 2s ease-in-out infinite;
}
.hero-sub { 
  font-size: 1.1rem; 
  color: var(--text-muted); 
  max-width: 480px; 
  margin-bottom: 2.5rem; 
  line-height: 1.7;
  animation: fadeIn 1.2s ease;
}
.hero-ctas { 
  display: flex; 
  gap: 1rem; 
  flex-wrap: wrap; 
  margin-bottom: 3rem;
  animation: fadeInUp 1.4s ease;
}

.hero-badges { 
  display: flex; 
  gap: 2rem; 
  flex-wrap: wrap;
  animation: fadeInUp 1.6s ease;
}
.hero-badge { 
  display: flex; 
  flex-direction: column;
  transition: transform 0.3s ease;
}
.hero-badge:hover { transform: translateY(-5px); }
.badge-num { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.6rem; 
  font-weight: 700; 
  color: var(--gold);
  animation: countUp 2s ease;
}
.badge-label { font-size: .75rem; color: var(--text-muted); letter-spacing: .05em; }

.hero-scroll { 
  position: absolute; 
  bottom: 2rem; 
  left: 50%; 
  transform: translateX(-50%); 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: .5rem; 
  color: var(--text-muted); 
  font-size: .75rem; 
  letter-spacing: .1em; 
  animation: bounce 2s infinite; 
  z-index: 3;
  cursor: pointer;
  transition: color 0.3s ease;
}
.hero-scroll:hover { color: var(--gold); }
@keyframes bounce { 
  0%,100%{transform:translateX(-50%) translateY(0)} 
  50%{transform:translateX(-50%) translateY(8px)} 
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 10px rgba(201,168,76,0.3); }
  50% { text-shadow: 0 0 20px rgba(201,168,76,0.6), 0 0 30px rgba(201,168,76,0.4); }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.marquee-strip { 
  background: var(--gold); 
  overflow: hidden; 
  padding: .6rem 0;
  animation: fadeIn 1.8s ease;
}
.marquee-track { 
  display: flex; 
  white-space: nowrap; 
  animation: marquee 25s linear infinite;
}
.marquee-track span { 
  font-size: .72rem; 
  font-weight: 700; 
  letter-spacing: .2em; 
  color: #0d0b09; 
  padding-right: 2rem;
}
@keyframes marquee { 
  from{transform:translateX(0)} 
  to{transform:translateX(-33.33%)} 
}

.booking { 
  padding: 5rem 0; 
  background: var(--bg2);
}

.booking-compact { 
  background: var(--bg3); 
  border: 1px solid var(--border); 
  border-radius: 8px; 
  padding: 2rem; 
  max-width: 600px; 
  margin: 0 auto;
  transition: all 0.4s ease;
}
.booking-compact:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(201,168,76,0.1);
  transform: translateY(-5px);
}

.booking-form { margin-bottom: 1.5rem; }
.form-group { 
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease backwards;
}
.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }

.form-label { 
  display: block; 
  font-size: .9rem; 
  font-weight: 600; 
  color: var(--gold); 
  margin-bottom: .5rem; 
  letter-spacing: .05em;
}
.form-select {
  width: 100%; 
  padding: .75rem 1rem; 
  background: var(--bg4); 
  border: 1px solid var(--border);
  color: var(--text); 
  border-radius: var(--radius); 
  font-family: inherit; 
  font-size: .9rem;
  appearance: none; 
  cursor: pointer; 
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23c9a84c' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right .75rem center; 
  background-repeat: no-repeat; 
  background-size: 1rem; 
  padding-right: 2.5rem;
}
.form-select:focus { 
  outline: none; 
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  transform: translateY(-2px);
}
.btn-block { width: 100%; }

.calendar-compact { 
  background: var(--bg4); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 1rem;
  transition: all 0.3s ease;
}
.calendar-compact:hover {
  border-color: var(--gold);
}
.calendar-header-compact { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  margin-bottom: .75rem;
}
.calendar-nav-compact {
  background: none; 
  border: none; 
  color: var(--gold); 
  font-size: 1.2rem;
  cursor: pointer; 
  padding: .25rem .5rem; 
  border-radius: var(--radius); 
  transition: all 0.3s ease;
}
.calendar-nav-compact:hover { 
  background: rgba(201,168,76,.1);
  transform: scale(1.2);
}
.calendar-month-compact { font-size: .95rem; font-weight: 600; }

.calendar-grid-compact { }
.calendar-weekdays-compact {
  display: grid; 
  grid-template-columns: repeat(7, 1fr); 
  gap: .15rem; 
  margin-bottom: .5rem;
}
.calendar-weekdays-compact span { 
  font-size: .7rem; 
  font-weight: 600; 
  color: var(--text-muted); 
  padding: .3rem 0; 
  text-align: center;
}

.calendar-days-compact { 
  display: grid; 
  grid-template-columns: repeat(7, 1fr); 
  gap: .15rem;
}
.calendar-day-compact {
  aspect-ratio: 1; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: .75rem; 
  cursor: pointer; 
  border-radius: 3px; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; 
  min-height: 28px;
}
.calendar-day-compact:hover { 
  background: rgba(201,168,76,.1);
  transform: scale(1.15);
}
.calendar-day-compact.other-month { color: var(--text-muted); opacity: .4; }
.calendar-day-compact.today { 
  background: var(--gold); 
  color: #0d0b09; 
  font-weight: 700;
  animation: pulse 2s ease-in-out infinite;
}
.calendar-day-compact.selected { 
  background: var(--gold); 
  color: #0d0b09; 
  font-weight: 700;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(201,168,76,0.4);
}
.calendar-day-compact.disabled { opacity: .3; cursor: not-allowed; }
.calendar-day-compact.available::after {
  content: ''; 
  position: absolute; 
  bottom: 1px; 
  left: 50%; 
  transform: translateX(-50%);
  width: 3px; 
  height: 3px; 
  border-radius: 50%; 
  background: var(--gold);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.7); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}

.booking-summary-compact { 
  background: var(--bg4); 
  border: 1px solid var(--gold); 
  border-radius: var(--radius); 
  padding: 1.25rem; 
  margin-top: 1rem;
  animation: fadeInUp 0.6s ease;
}
.summary-row { 
  display: flex; 
  justify-content: space-between; 
  padding: .3rem 0; 
  font-size: .85rem;
  transition: all 0.3s ease;
}
.summary-row:hover {
  color: var(--gold);
  transform: translateX(5px);
}
.summary-total { 
  border-top: 1px solid var(--border); 
  margin-top: .5rem; 
  padding-top: .5rem; 
  font-weight: 700; 
  color: var(--gold);
}

.booking-info-compact { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: .5rem; 
  padding-top: 1rem; 
  border-top: 1px solid var(--border);
}
.info-item { 
  font-size: .75rem; 
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.info-item:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.about { padding: 6rem 0; }
.about-inner { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 5rem; 
  align-items: center;
}
.about-text { 
  color: var(--text-muted); 
  margin-bottom: 1rem; 
  line-height: 1.8;
  animation: fadeIn 1s ease;
}
.stats-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem; 
  margin-top: 2.5rem;
}
.stat-item { 
  border-left: 2px solid var(--gold); 
  padding-left: 1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease backwards;
}
.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:hover {
  transform: translateX(10px);
  border-left-width: 4px;
}
.stat-num { 
  display: block; 
  font-family: 'Playfair Display', serif; 
  font-size: 2rem; 
  font-weight: 700; 
  color: var(--gold);
}
.stat-label { font-size: .78rem; color: var(--text-muted); line-height: 1.4; }

.about-img-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 200px 200px; 
  gap: 1rem;
}
.about-img { 
  border-radius: var(--radius); 
  overflow: hidden;
  transition: all 0.4s ease;
  animation: fadeIn 1s ease backwards;
}
.about-img:nth-child(1) { animation-delay: 0.2s; }
.about-img:nth-child(2) { animation-delay: 0.4s; }
.about-img:nth-child(3) { animation-delay: 0.6s; }
.about-img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 10px 30px rgba(201,168,76,0.2);
}
.about-img-tall { grid-row: span 2; }

.team { padding: 6rem 0; background: var(--bg2); }
.team-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 1.5rem;
}
.team-card { 
  background: var(--bg3); 
  border: 1px solid var(--border); 
  border-radius: 8px; 
  overflow: hidden; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card:hover { 
  transform: translateY(-10px) scale(1.02); 
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(201,168,76,0.2);
}
.team-photo { 
  height: 260px;
  transition: transform 0.4s ease;
}
.team-card:hover .team-photo {
  transform: scale(1.1);
}
.team-info { padding: 1.25rem; }
.team-name { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.1rem; 
  font-weight: 700; 
  margin-bottom: .25rem;
}
.team-role { 
  font-size: .75rem; 
  font-weight: 600; 
  letter-spacing: .1em; 
  color: var(--gold); 
  text-transform: uppercase; 
  display: block; 
  margin-bottom: .75rem;
}
.team-bio { 
  font-size: .82rem; 
  color: var(--text-muted); 
  margin-bottom: 1rem; 
  line-height: 1.6;
}

.services { padding: 6rem 0; }
.services-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem; 
  margin-bottom: 4rem;
}
.service-card {
  background: var(--bg2); 
  border: 1px solid var(--border);
  border-radius: 8px; 
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.service-card:hover { 
  transform: translateY(-8px) scale(1.02); 
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(201,168,76,0.2);
}
.service-card--featured { 
  border-color: var(--gold); 
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  animation: glow 3s ease-in-out infinite;
}
.service-badge { 
  position: absolute; 
  top: 1rem; 
  right: 1rem; 
  background: var(--gold); 
  color: #0d0b09; 
  font-size: .7rem; 
  font-weight: 700; 
  letter-spacing: .1em; 
  padding: .25rem .6rem; 
  border-radius: 20px; 
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.service-icon { 
  margin-bottom: 1.25rem;
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
}
.service-title { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.2rem; 
  font-weight: 700; 
  margin-bottom: .75rem;
}
.service-desc { 
  font-size: .88rem; 
  color: var(--text-muted); 
  line-height: 1.7; 
  margin-bottom: 1rem;
}
.service-price { 
  font-size: 1.1rem; 
  font-weight: 700; 
  color: var(--gold); 
  margin-bottom: 1rem;
}
.service-link { 
  font-size: .82rem; 
  font-weight: 600; 
  color: var(--gold); 
  letter-spacing: .05em; 
  transition: all 0.3s ease;
  display: inline-block;
}
.service-link:hover { 
  letter-spacing: .15em;
  transform: translateX(5px);
}

.full-pricelist { 
  background: var(--bg2); 
  border: 1px solid var(--border); 
  border-radius: 8px; 
  padding: 2.5rem; 
  max-width: 640px; 
  margin: 0 auto; 
  text-align: center;
  transition: all 0.4s ease;
}
.full-pricelist:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(201,168,76,0.1);
}
.pricelist-title { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.5rem; 
  font-weight: 700; 
  margin-bottom: 1.5rem;
}
.price-list { list-style: none; margin-bottom: 2rem; }
.price-item { 
  display: flex; 
  align-items: baseline; 
  gap: .5rem; 
  padding: .75rem 0; 
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease backwards;
}
.price-item:nth-child(1) { animation-delay: 0.1s; }
.price-item:nth-child(2) { animation-delay: 0.2s; }
.price-item:nth-child(3) { animation-delay: 0.3s; }
.price-item:nth-child(4) { animation-delay: 0.4s; }
.price-item:nth-child(5) { animation-delay: 0.5s; }
.price-item:nth-child(6) { animation-delay: 0.6s; }
.price-item:nth-child(7) { animation-delay: 0.7s; }
.price-item:nth-child(8) { animation-delay: 0.8s; }
.price-item:nth-child(9) { animation-delay: 0.9s; }
.price-item:hover {
  background: rgba(201,168,76,0.05);
  padding-left: 1rem;
  border-color: var(--gold);
}
.price-item--featured .price-name, .price-item--featured .price-val { 
  color: var(--gold); 
  font-weight: 600;
}
.price-name { font-size: .9rem; white-space: nowrap; }
.price-dots { 
  flex: 1; 
  border-bottom: 1px dotted var(--border); 
  margin: 0 .5rem;
}
.price-val { font-size: .9rem; font-weight: 600; white-space: nowrap; }

.gallery { padding: 6rem 0; background: var(--bg2); }
.gallery-sub { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.3rem; 
  font-weight: 700; 
  margin-bottom: 1.5rem; 
  display: flex; 
  align-items: center;
}

.before-after-wrap { margin-bottom: 4rem; }
.before-after-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem;
}
.ba-card { 
  background: var(--bg3); 
  border: 1px solid var(--border); 
  border-radius: 8px; 
  overflow: hidden;
  transition: all 0.4s ease;
}
.ba-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(201,168,76,0.2);
}
.ba-images { 
  display: flex; 
  align-items: center; 
  gap: .5rem; 
  padding: 1rem;
}
.ba-img { 
  flex: 1; 
  height: 160px; 
  border-radius: var(--radius); 
  overflow: hidden;
  transition: transform 0.3s ease;
}
.ba-card:hover .ba-img {
  transform: scale(1.05);
}
.ba-arrow { 
  color: var(--gold); 
  font-size: 1.5rem; 
  flex-shrink: 0;
  animation: slideRight 1.5s ease-in-out infinite;
}
@keyframes slideRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}
.ba-label { 
  padding: .75rem 1rem; 
  font-size: .82rem; 
  color: var(--text-muted); 
  border-top: 1px solid var(--border);
}

.gallery-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  grid-auto-rows: 220px; 
  gap: 1rem; 
  margin-bottom: 4rem;
}
.gallery-item { 
  border-radius: var(--radius); 
  overflow: hidden; 
  cursor: pointer; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(201,168,76,0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover { 
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 40px rgba(201,168,76,0.3);
  z-index: 10;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.insta-grid { 
  display: grid; 
  grid-template-columns: repeat(6, 1fr); 
  gap: .75rem;
}
.insta-item { 
  aspect-ratio: 1; 
  border-radius: var(--radius); 
  overflow: hidden; 
  cursor: pointer; 
  transition: all 0.3s ease;
  position: relative;
}
.insta-item::after {
  content: '📷';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.9);
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta-item:hover { 
  opacity: .9;
  transform: scale(1.1);
  z-index: 10;
}
.insta-item:hover::after {
  opacity: 1;
}
.instagram-feed { text-align: center; }

.reviews { padding: 6rem 0; }
.reviews-summary { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 2rem; 
  margin-top: 1rem; 
  flex-wrap: wrap;
}
.reviews-score { 
  text-align: center;
  animation: fadeInUp 0.8s ease;
}
.score-num { 
  font-family: 'Playfair Display', serif; 
  font-size: 3rem; 
  font-weight: 700; 
  color: var(--gold); 
  display: block;
  animation: countUp 2s ease;
}
.score-stars { 
  color: var(--gold); 
  font-size: 1.2rem; 
  margin: .25rem 0;
  animation: glow 2s ease-in-out infinite;
}
.score-count { font-size: .8rem; color: var(--text-muted); }

.reviews-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem;
}
.review-card { 
  background: var(--bg2); 
  border: 1px solid var(--border); 
  border-radius: 8px; 
  padding: 1.75rem; 
  transition: all 0.4s ease;
}
.review-card:hover { 
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(201,168,76,0.2);
}
.review-stars { 
  color: var(--gold); 
  font-size: 1rem; 
  margin-bottom: 1rem;
}
.review-text { 
  font-size: .9rem; 
  color: var(--text-muted); 
  line-height: 1.7; 
  margin-bottom: 1.25rem; 
  font-style: italic;
}
.review-author { 
  display: flex; 
  align-items: center; 
  gap: .75rem;
}
.review-avatar { 
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  background: var(--bg4); 
  border: 1px solid var(--gold); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: .75rem; 
  font-weight: 700; 
  color: var(--gold); 
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.review-card:hover .review-avatar {
  transform: scale(1.2) rotate(360deg);
}
.review-name { font-size: .88rem; font-weight: 600; }
.review-source { font-size: .75rem; color: var(--text-muted); }

.loyalty { padding: 6rem 0; background: var(--bg2); }
.loyalty-inner { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 2rem;
}
.loyalty-card { 
  background: var(--bg3); 
  border: 1px solid var(--border); 
  border-radius: 8px; 
  padding: 2.5rem; 
  transition: all 0.4s ease;
}
.loyalty-card:hover { 
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(201,168,76,0.2);
}
.loyalty-icon { 
  font-size: 2.5rem; 
  margin-bottom: 1rem;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}
.loyalty-title { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.5rem; 
  font-weight: 700; 
  margin-bottom: 1rem;
}
.loyalty-text { 
  color: var(--text-muted); 
  margin-bottom: 1.25rem; 
  line-height: 1.7;
}
.loyalty-perks { list-style: none; margin-bottom: 1.75rem; }
.loyalty-perks li { 
  font-size: .88rem; 
  color: var(--text-muted); 
  padding: .35rem 0;
  transition: all 0.3s ease;
}
.loyalty-perks li:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.blog { padding: 6rem 0; }
.blog-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem;
}
.blog-card { 
  background: var(--bg2); 
  border: 1px solid var(--border); 
  border-radius: 8px; 
  overflow: hidden; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover { 
  transform: translateY(-10px) scale(1.02); 
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(201,168,76,0.2);
}
.blog-img { 
  height: 200px;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-img {
  transform: scale(1.1);
}
.blog-content { padding: 1.5rem; }
.blog-tag { 
  font-size: .7rem; 
  font-weight: 700; 
  letter-spacing: .15em; 
  color: var(--gold); 
  text-transform: uppercase; 
  background: rgba(201,168,76,.1); 
  padding: .2rem .6rem; 
  border-radius: 20px; 
  display: inline-block; 
  margin-bottom: .75rem;
  transition: all 0.3s ease;
}
.blog-card:hover .blog-tag {
  background: var(--gold);
  color: #0d0b09;
}
.blog-title { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.05rem; 
  font-weight: 700; 
  margin-bottom: .75rem; 
  line-height: 1.4;
}
.blog-excerpt { 
  font-size: .85rem; 
  color: var(--text-muted); 
  line-height: 1.6; 
  margin-bottom: 1rem;
}
.blog-link { 
  font-size: .82rem; 
  font-weight: 600; 
  color: var(--gold); 
  transition: all 0.3s ease;
  display: inline-block;
}
.blog-link:hover { 
  letter-spacing: .08em;
  transform: translateX(5px);
}

.newsletter { 
  padding: 4rem 0; 
  background: var(--gold);
  animation: fadeIn 1s ease;
}
.newsletter-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 2rem; 
  flex-wrap: wrap;
}
.newsletter-title { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.6rem; 
  font-weight: 700; 
  color: #0d0b09; 
  margin-bottom: .25rem;
  animation: fadeInLeft 0.8s ease;
}
.newsletter-text p { 
  color: rgba(0,0,0,.6); 
  font-size: .9rem;
  animation: fadeInLeft 1s ease;
}
.newsletter-form { 
  display: flex; 
  gap: .75rem; 
  flex-wrap: wrap;
  animation: fadeInRight 1s ease;
}
.newsletter-input { 
  padding: .75rem 1.25rem; 
  border: none; 
  border-radius: var(--radius); 
  background: rgba(0,0,0,.15); 
  color: #0d0b09; 
  font-family: inherit; 
  font-size: .9rem; 
  min-width: 260px;
  transition: all 0.3s ease;
}
.newsletter-input::placeholder { color: rgba(0,0,0,.5); }
.newsletter-input:focus { 
  outline: none; 
  background: rgba(0,0,0,.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.newsletter .btn-gold { background: #0d0b09; color: var(--gold); }
.newsletter .btn-gold:hover { background: #1e1814; }

.contact { padding: 6rem 0; background: var(--bg2); }
.contact-inner { 
  display: grid; 
  grid-template-columns: 1fr 1.4fr; 
  gap: 4rem;
}
.contact-item { 
  display: flex; 
  align-items: flex-start; 
  gap: 1rem; 
  margin-bottom: 1.75rem;
  transition: all 0.3s ease;
  animation: fadeInLeft 0.8s ease backwards;
}
.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }
.contact-item:hover {
  transform: translateX(10px);
}
.contact-icon { 
  font-size: 1.2rem; 
  flex-shrink: 0; 
  margin-top: .1rem;
  transition: transform 0.3s ease;
}
.contact-item:hover .contact-icon {
  transform: scale(1.3) rotate(10deg);
}
.contact-label { 
  font-size: .75rem; 
  font-weight: 600; 
  letter-spacing: .1em; 
  color: var(--gold); 
  text-transform: uppercase; 
  margin-bottom: .25rem;
}
.contact-value { font-size: .95rem; line-height: 1.6; }
a.contact-value:hover { color: var(--gold); }

.quick-contact { 
  display: flex; 
  flex-direction: column; 
  gap: .75rem; 
  margin-top: 2rem;
}
.quick-btn { 
  display: flex; 
  align-items: center; 
  gap: .75rem; 
  padding: .75rem 1.25rem; 
  border-radius: var(--radius); 
  font-size: .88rem; 
  font-weight: 600; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.quick-btn--call { background: var(--gold); color: #0d0b09; }
.quick-btn--call:hover { 
  background: var(--gold-light);
  transform: translateX(10px) scale(1.05);
  box-shadow: 0 8px 20px rgba(201,168,76,0.3);
}
.quick-btn--whatsapp { background: var(--gold); color: #0d0b09; }
.quick-btn--whatsapp:hover { 
  background: var(--gold-light);
  transform: translateX(10px) scale(1.05);
  box-shadow: 0 8px 20px rgba(201,168,76,0.3);
}
.quick-btn--messenger { background: var(--gold); color: #0d0b09; }
.quick-btn--messenger:hover { 
  background: var(--gold-light);
  transform: translateX(10px) scale(1.05);
  box-shadow: 0 8px 20px rgba(201,168,76,0.3);
}

.contact-form { 
  background: var(--bg3); 
  border: 1px solid var(--border); 
  border-radius: 8px; 
  padding: 2rem; 
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  animation: fadeInRight 0.8s ease;
}
.contact-form:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(201,168,76,0.1);
}
.form-title { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.3rem; 
  font-weight: 700; 
  margin-bottom: 1.25rem;
}
.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: .75rem; 
  margin-bottom: .75rem;
}
.form-input, .form-textarea {
  width: 100%; 
  padding: .7rem 1rem;
  background: var(--bg4); 
  border: 1px solid var(--border);
  color: var(--text); 
  border-radius: var(--radius);
  font-family: inherit; 
  font-size: .9rem;
  transition: all 0.3s ease;
  margin-bottom: .75rem;
}
.form-input:focus, .form-textarea:focus { 
  outline: none; 
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  transform: translateY(-2px);
}
.form-textarea { resize: vertical; }

.map-wrap { 
  border-radius: 8px; 
  overflow: hidden;
  animation: fadeInRight 1s ease;
}
.map-placeholder { 
  background: var(--bg3); 
  border: 1px solid var(--border); 
  border-radius: 8px; 
  padding: 3rem; 
  text-align: center; 
  color: var(--text-muted); 
  font-size: .9rem;
  transition: all 0.4s ease;
}
.map-placeholder:hover {
  border-color: var(--gold);
  transform: scale(1.02);
}

.site-footer { 
  background: var(--bg); 
  border-top: 1px solid var(--border); 
  padding: 4rem 0 2rem;
  animation: fadeIn 1s ease;
}
.footer-top { 
  display: grid; 
  grid-template-columns: 280px 1fr; 
  gap: 4rem; 
  margin-bottom: 3rem;
}
.footer-tagline { 
  font-size: .85rem; 
  color: var(--text-muted); 
  margin: .75rem 0 1.25rem; 
  font-style: italic;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a { 
  color: var(--text-muted); 
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-social a:hover { 
  color: var(--gold);
  transform: translateY(-5px) scale(1.2);
}

.footer-nav { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem;
}
.footer-nav-col { 
  display: flex; 
  flex-direction: column; 
  gap: .6rem;
}
.footer-nav-title { 
  font-size: .72rem; 
  font-weight: 700; 
  letter-spacing: .15em; 
  color: var(--gold); 
  text-transform: uppercase; 
  margin-bottom: .5rem;
}
.footer-nav-col a { 
  font-size: .85rem; 
  color: var(--text-muted); 
  transition: all 0.3s ease;
}
.footer-nav-col a:hover { 
  color: var(--text);
  transform: translateX(5px);
}

.footer-bottom { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding-top: 2rem; 
  border-top: 1px solid var(--border); 
  font-size: .8rem; 
  color: var(--text-muted); 
  flex-wrap: wrap; 
  gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { 
  color: var(--text-muted); 
  transition: all 0.3s ease;
}
.footer-legal a:hover { 
  color: var(--gold);
  transform: translateY(-2px);
}

.sticky-cta {
  display: none;
  position: fixed; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  z-index: 200;
  background: var(--bg2); 
  border-top: 1px solid var(--border);
  padding: .75rem 1rem;
  gap: .75rem;
  animation: slideUp 0.6s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.sticky-btn { 
  flex: 1; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: .5rem; 
  padding: .85rem; 
  border-radius: var(--radius); 
  font-size: .88rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: .05em; 
  transition: all 0.3s ease;
}
.sticky-btn--call { 
  background: var(--bg3); 
  border: 1px solid var(--border); 
  color: var(--text);
}
.sticky-btn--call:hover {
  background: var(--gold);
  color: #0d0b09;
  transform: scale(1.05);
}
.sticky-btn--book { 
  background: var(--gold); 
  color: #0d0b09;
}
.sticky-btn--book:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .header-topbar { display: none; }
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 1rem 0;
  }
  .nav-toggle-input:checked ~ .main-nav { display: flex; }
  .main-nav a { padding: .85rem 1.5rem; border-bottom: 1px solid var(--border); }
  .header-cta { display: none; }

  .hero-headline { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-ctas { flex-direction: column; }
  .hero-badges { gap: 1.25rem; }

  .shape-1 { width: 150px; height: 150px; }
  .shape-2 { width: 100px; height: 100px; }
  .shape-3 { width: 80px; height: 80px; }
  .shape-4 { width: 200px; height: 200px; }
  .shape-5 { width: 60px; height: 60px; }
  .shape-6 { width: 120px; height: 120px; }

  .booking-info-compact { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .loyalty-inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; justify-content: center; }
  .newsletter-input { min-width: 0; width: 100%; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--tall { grid-row: span 1; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-nav { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; gap: 1rem; }

  .shape-1 { width: 100px; height: 100px; }
  .shape-2 { width: 70px; height: 70px; }
  .shape-3 { width: 50px; height: 50px; }
  .shape-4 { width: 130px; height: 130px; }
  .shape-5 { width: 40px; height: 40px; }
  .shape-6 { width: 80px; height: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  .floating-shape,
  .hero-scroll,
  .loyalty-icon,
  .service-badge,
  .ba-arrow {
    animation: none;
  }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
