/* ═══════════════════════════════════════════
   SALON 85 — PREMIUM STYLESHEET
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── VARIABLES ── */
:root {
  --gold:        #C9A96E;
  --gold-light:  #E8D5B0;
  --dark:        #0D0B08;
  --dark-mid:    #1A1612;
  --dark-soft:   #2A2420;
  --cream:       #F5F0E8;
  --cream-mid:   #EDE8DE;
  --text-muted:  #8A8075;
  --white:       #FFFFFF;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:       2px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); }

/* ── UTILITY ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.55); }
.section--mid  { background: var(--dark-mid); color: var(--white); }
.section--cream { background: var(--cream-mid); }
.gold { color: var(--gold); }
.italic { font-style: italic; }
.center { text-align: center; }
.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.divider--left { margin: 1.5rem 0; }
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: var(--transition);
  z-index: 0;
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { color: var(--dark); }
.btn span { position: relative; z-index: 1; }
.btn--filled {
  background: var(--gold);
  color: var(--dark);
}
.btn--filled::before { background: var(--dark); }
.btn--filled:hover { color: var(--gold); border-color: var(--dark); }

/* ═══════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.5rem 0;
}
.header.scrolled {
  background: rgba(13, 11, 8, 0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo span { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 2.5rem; }
.nav__link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  background: var(--dark-mid);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 1rem 0;
  min-width: 180px;
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s, padding 0.2s;
}
.nav__dropdown-menu a:hover { color: var(--gold); padding-left: 2rem; }
.nav__cta {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: var(--transition);
}
.nav__cta:hover { background: var(--gold); color: var(--dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav__close {
  position: absolute;
  top: 2rem; right: 2rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
  background: var(--dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0e05 0%, #0D0B08 50%, #0a0d0f 100%);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,169,110,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,169,110,0.04) 0%, transparent 40%);
}
.hero__number {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(10rem, 20vw, 22rem);
  font-weight: 300;
  color: rgba(201,169,110,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero__content { position: relative; z-index: 2; max-width: 750px; }
.hero__eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero__title { color: var(--white); margin-bottom: 1.5rem; }
.hero__title em { color: var(--gold); font-style: italic; }
.hero__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero__phone {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.hero__phone:hover { color: var(--gold); }
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(0.6); }
}
.hero__badges {
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
}
.hero__badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 1rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero__badge-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.3rem;
  display: block;
}

/* ═══════════════════════════════════════════
   LOCATIONS STRIP
   ═══════════════════════════════════════════ */
.locations-strip {
  background: var(--gold);
  padding: 1.2rem 0;
  overflow: hidden;
}
.locations-strip__inner {
  display: flex;
  gap: 4rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.locations-strip__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  flex-shrink: 0;
}
.locations-strip__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--dark); opacity: 0.4; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SERVICES OVERVIEW
   ═══════════════════════════════════════════ */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.services-intro__text {}
.services-intro__text h2 { margin-bottom: 1.5rem; }
.services-intro__text p  { margin-bottom: 2rem; }
.services-intro__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.services-intro__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.services-intro__image:hover img { transform: scale(1.04); }
.services-intro__image::before {
  content: '';
  position: absolute;
  top: -1rem; left: -1rem;
  right: 1rem; bottom: 1rem;
  border: 1px solid rgba(201,169,110,0.2);
  z-index: 1;
  pointer-events: none;
}

/* SERVICE CARDS GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.1);
  margin-top: 4rem;
}
.service-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { background: var(--dark-soft); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.service-card__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   SERVICES TABS (WOMEN / MEN)
   ═══════════════════════════════════════════ */
.tabs {
  margin-top: 5rem;
}
.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.tab-btn {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  background: none;
  border: none;
  padding: 1rem 3rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.tab-btn.active { color: var(--white); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.services-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
  border: 1px solid rgba(201,169,110,0.08);
  transition: var(--transition);
  cursor: pointer;
}
.service-item:hover {
  border-color: rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.04);
}
.service-item__img {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--dark-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 1px solid rgba(201,169,110,0.15);
}
.service-item__name {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-align: center;
}

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.stats {
  background: var(--dark-mid);
  padding: 4rem 0;
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 2rem;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.5rem;
}
.stat__divider {
  width: 1px;
  background: rgba(201,169,110,0.1);
  height: 100%;
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
.about { background: var(--cream); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about__image-stack {
  position: relative;
  height: 600px;
}
.about__img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 85%;
  object-fit: cover;
}
.about__img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 50%;
  object-fit: cover;
  border: 6px solid var(--cream);
}
.about__img-badge {
  position: absolute;
  bottom: 3rem; left: 0;
  background: var(--dark);
  color: var(--white);
  padding: 1.5rem 2rem;
  z-index: 2;
}
.about__img-badge span {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  display: block;
}
.about__img-badge small {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.about__text {}
.about__text h2 { margin-bottom: 1.5rem; }
.about__text p  { margin-bottom: 1.5rem; }
.about__features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.about__feature-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.about__feature-text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.about__feature-text p {
  font-size: 0.8rem;
  margin: 0;
}

/* ═══════════════════════════════════════════
   BRANDS
   ═══════════════════════════════════════════ */
.brands { padding: 3rem 0; background: var(--cream-mid); }
.brands__label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
}
.brands__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.brands__logo-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.3s;
  cursor: default;
}
.brands__logo-item:hover { color: var(--dark); }

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials { background: var(--dark); padding: 6rem 0; }
.testimonials__header { text-align: center; margin-bottom: 4rem; }
.testimonials__header h2 { color: var(--white); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.1);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  background: rgba(201,169,110,0.04);
  border-color: rgba(201,169,110,0.25);
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.testimonial-card__text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
}
.testimonial-card__date {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
}
.testimonials__rating {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}
.testimonials__rating strong { color: var(--gold); font-size: 1.2rem; }

/* ═══════════════════════════════════════════
   CONTACT / BOOKING
   ═══════════════════════════════════════════ */
.contact { background: var(--cream); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.contact__info {}
.contact__info h2 { margin-bottom: 1.5rem; }
.contact__info p  { margin-bottom: 2rem; }
.contact__branches { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 2.5rem; }
.contact__branch {
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.08);
  position: relative;
  transition: var(--transition);
}
.contact__branch:hover { border-color: var(--gold); }
.contact__branch-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.contact__branch-addr { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.contact__branch-phone {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.contact__branch-phone:hover { color: var(--gold); }
.contact__branch-tag {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.08);
  padding: 0.3rem 0.7rem;
}
.contact__hours {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.contact__hours strong { color: var(--dark); }

/* BOOKING FORM */
.booking-form {
  background: var(--dark);
  padding: 3rem;
}
.booking-form h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.booking-form .form-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.15);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark-mid); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover { background: var(--gold-light); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer__brand {}
.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__logo span { color: var(--gold); }
.footer__tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  max-width: 240px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer__social { display: flex; gap: 0.8rem; }
.footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer__links a:hover { color: rgba(255,255,255,0.8); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}
.footer__bottom-links { display: flex; gap: 2rem; }
.footer__bottom-links a { transition: color 0.3s; }
.footer__bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-list  { grid-template-columns: repeat(3, 1fr); }
  .about__inner   { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-stack { height: 400px; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .hero__badges   { display: none; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .services-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-list   { grid-template-columns: repeat(2, 1fr); }
  .stats__inner    { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__inner  { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid    { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom  { flex-direction: column; gap: 1rem; text-align: center; }
  .hero            { padding-bottom: 4rem; }
  .section         { padding: 4rem 0; }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero__number    { font-size: 8rem; opacity: 0.04; }
}
@media (max-width: 480px) {
  .services-list  { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: 1fr; }
  .booking-form   { padding: 2rem 1.5rem; }
  .form-row       { grid-template-columns: 1fr; }
}
