/* ==========================================================================
   CHANGING FACES LUXURY SALON & SPA - MAIN STYLESHEET
   Palette: Logo Aqua (#60C8C8), Petal Yellow (#F8C000), Deep Teal (#123A3E)
   ========================================================================== */

:root {
  --primary-teal: #64d3cf;
  --teal-light: #9af0eb;
  --teal-dark: #0f3337;
  --accent-gold: #f6c75a;
  --gold-hover: #ffe08a;
  --rose-accent: #eaa0a8;
  --ink: #071f23;
  --bg-dark: #0d2b2f;
  --bg-card: rgba(20, 67, 72, 0.86);
  --bg-light: #f8fcfb;
  --text-main: #f7fffd;
  --text-dark: #173134;
  --text-muted: #c5dcda;
  --border-color: rgba(154, 240, 235, 0.22);
  --shadow-soft: 0 24px 70px rgba(3, 18, 20, 0.42);
  --shadow-glow: 0 18px 44px rgba(100, 211, 207, 0.18);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body), system-ui, sans-serif;
  background:
    linear-gradient(180deg, #071f23 0%, var(--bg-dark) 42%, #0a2529 100%);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(234, 160, 168, 0.08), transparent 32%),
    linear-gradient(245deg, rgba(246, 199, 90, 0.08), transparent 28%);
  z-index: -1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: rgba(246, 199, 90, 0.32);
  color: #fff;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading), Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

.gold-text {
  color: var(--accent-gold);
}

.teal-text {
  color: var(--teal-light);
}

/* Buttons & Interactive Elements */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--teal-light), var(--primary-teal));
  color: var(--teal-dark);
  border: 1px solid rgba(154, 240, 235, 0.72);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.035em;
  word-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(100, 211, 207, 0.28);
  background: linear-gradient(135deg, #c3fffb, var(--primary-teal));
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold-hover), var(--accent-gold));
  color: var(--teal-dark);
  border: 1px solid rgba(255, 224, 138, 0.7);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.035em;
  word-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(246, 199, 90, 0.24);
  transition: var(--transition);
  text-align: center;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 224, 138, 0.35);
  background: linear-gradient(135deg, #fff0b8, var(--accent-gold));
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(7, 31, 35, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 14px 30px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
}

.site-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  background: #FFFFFF;
  padding: 4px;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 12px 28px rgba(100, 211, 207, 0.2);
}

.brand-name {
  display: inline-flex;
  flex-wrap: wrap;
  column-gap: 0.32em;
  line-height: 1.1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 24px);
  list-style: none;
  min-width: 0;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--teal-light);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  padding: clamp(92px, 12vw, 140px) 30px clamp(76px, 10vw, 116px);
  min-height: min(660px, calc(100svh - 84px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(7, 31, 35, 0.36), rgba(7, 31, 35, 0.94)),
    linear-gradient(120deg, rgba(234, 160, 168, 0.17), transparent 34%),
    radial-gradient(circle at center, rgba(100, 211, 207, 0.22) 0%, rgba(13, 43, 47, 1) 70%);
  background-position: center;
  background-size: cover;
  text-align: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 8% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 192, 0, 0.7), transparent);
}

.home-hero {
  background-image:
    linear-gradient(180deg, rgba(7, 31, 35, 0.28), rgba(7, 31, 35, 0.92)),
    linear-gradient(110deg, rgba(234, 160, 168, 0.18), transparent 36%),
    url("images/Pic 4.jpg");
}

.gallery-hero {
  background-image:
    linear-gradient(180deg, rgba(7, 31, 35, 0.28), rgba(7, 31, 35, 0.93)),
    linear-gradient(110deg, rgba(246, 199, 90, 0.15), transparent 36%),
    url("images/Pic 2.jpg");
}

.hero-title {
  position: relative;
  z-index: 1;
  max-width: 920px;
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  margin-bottom: 20px;
  line-height: 1.02;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.48);
  text-wrap: balance;
}

.hero-subtitle {
  position: relative;
  z-index: 1;
  max-width: min(650px, 100%);
  margin: 0 auto 35px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-points {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-points span {
  padding: 9px 16px;
  color: #FFFFFF;
  background: rgba(7, 31, 35, 0.58);
  border: 1px solid rgba(154, 240, 235, 0.26);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 0.88rem;
}

/* Page Layouts & Grids */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 25px;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 12px;
  line-height: 1.08;
  text-wrap: balance;
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
}

.salon-showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: center;
  margin-bottom: 70px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(100, 211, 207, 0.13), rgba(246, 199, 90, 0.09)),
    linear-gradient(220deg, rgba(234, 160, 168, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.showcase-copy h2,
.gallery-cta h2 {
  font-size: 2.15rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.showcase-copy p,
.gallery-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.photo-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 190px);
  gap: 14px;
}

.photo-card,
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(154, 240, 235, 0.26);
  background: rgba(7, 31, 35, 0.55);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.photo-card-large {
  grid-row: span 2;
}

.photo-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.photo-card:hover img,
.gallery-item:hover img {
  transform: scale(1.04);
}

.photo-card figcaption,
.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: #FFFFFF;
  background: rgba(7, 31, 35, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 0.86rem;
  backdrop-filter: blur(8px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: clamp(260px, 34vw, 380px);
  gap: 22px;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-category {
  margin-top: 56px;
}

.gallery-category:first-of-type {
  margin-top: 0;
}

.category-heading {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.category-heading h2,
.category-heading h3 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.12;
  text-wrap: balance;
}

.gallery-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item-portrait {
  grid-row: span 2;
}

.team-photo-section {
  margin-top: 70px;
}

.gallery-cta {
  margin-top: 42px;
  padding: clamp(26px, 5vw, 48px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(100, 211, 207, 0.15), rgba(246, 199, 90, 0.1)),
    linear-gradient(220deg, rgba(234, 160, 168, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  margin: 0 0 70px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(246, 199, 90, 0.11), rgba(100, 211, 207, 0.1)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.video-feature-gallery {
  margin-bottom: 42px;
}

.video-copy h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.08;
  margin-bottom: 14px;
  text-wrap: balance;
}

.video-copy p {
  color: var(--text-muted);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  border: 1px solid rgba(154, 240, 235, 0.28);
  background: rgba(7, 31, 35, 0.68);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 18%);
  z-index: 1;
}

.video-frame video,
.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.video-frame video {
  object-fit: cover;
}

.video-frame iframe {
  border: 0;
}

/* Interactive Cards with Hover Animation */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 35px);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-teal), var(--accent-gold));
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(154, 240, 235, 0.42);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(154, 240, 235, 0.16), rgba(246, 199, 90, 0.12));
  border: 1px solid rgba(154, 240, 235, 0.22);
  border-radius: 8px;
  font-size: 1.45rem;
  color: var(--teal-light);
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.card a:not(.btn-primary):not(.btn-gold) {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
}

/* Pricing */
.pricing-container {
  max-width: 1180px;
}

.pricing-note {
  max-width: 740px;
  margin: 0 auto 34px;
  text-align: center;
  color: var(--text-muted);
}

.pricing-note p {
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pricing-card {
  padding: clamp(22px, 3vw, 30px);
}

.pricing-card .card-title {
  margin-bottom: 16px;
}

.pricing-card-wide {
  grid-column: 1 / -1;
}

.price-list {
  display: grid;
  gap: 0;
}

.price-list-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span:first-child {
  min-width: 0;
  color: rgba(247, 255, 253, 0.9);
}

.price-row span:last-child {
  color: var(--accent-gold);
  font-weight: 800;
  white-space: nowrap;
}

.price-footnote {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.pricing-actions {
  margin-top: 36px;
  text-align: center;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  min-height: 50px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(246, 199, 90, 0.13);
}

.contact-location {
  margin-bottom: 24px;
}

.contact-location .card-title {
  margin-bottom: 10px;
}

.address-line {
  color: var(--text-muted);
  margin-bottom: 6px;
}

.address-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 10px;
  color: var(--accent-gold);
  font-weight: 700;
}

/* Footer */
.footer {
  background: #071f23;
  border-top: 1px solid var(--border-color);
  padding: 60px 30px 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-title {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--teal-light);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-address {
  margin-bottom: 10px;
  color: var(--text-muted);
}

/* Responsive Navigation */
@media (max-width: 900px) {
  .nav-container {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }
  .logo-brand {
    grid-column: 1;
    grid-row: 1;
  }
  .header .btn-gold {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }
  .nav-menu {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    max-width: calc(100vw - 36px);
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 2px 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu::-webkit-scrollbar {
    display: none;
  }
  .nav-menu li {
    flex: 0 0 auto;
  }
  .nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(154, 240, 235, 0.18);
    border-radius: 999px;
    font-size: 0.78rem;
  }
  .nav-link::after {
    display: none;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .nav-container {
    padding: 12px 18px;
  }
  .site-logo {
    width: 54px;
    height: 54px;
  }
  .logo-brand {
    font-size: 1.1rem;
  }
  .btn-gold {
    padding: 12px 18px;
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  body {
    line-height: 1.58;
  }
  .nav-container,
  .container {
    max-width: 100%;
  }
  .nav-container {
    gap: 12px;
    justify-content: space-between;
    padding: 10px 14px 12px;
  }
  .logo-brand {
    flex: 0 0 auto;
  }
  .brand-name {
    display: none;
  }
  .site-logo {
    width: 50px;
    height: 50px;
  }
  .header .btn-gold {
    flex: 0 1 150px;
    min-height: 42px;
    padding: 9px 12px;
    max-width: 150px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    font-size: 0.68rem;
    word-spacing: 0.04em;
  }
  .hero {
    min-height: auto;
    padding: 78px 18px 58px;
    align-items: flex-start;
    text-align: left;
  }
  .hero-title {
    font-size: clamp(2rem, 10vw, 2.65rem);
    max-width: min(100%, 360px);
    line-height: 1.04;
    overflow-wrap: normal;
  }
  .hero-subtitle {
    font-size: 0.98rem;
    max-width: 340px;
    margin-bottom: 26px;
  }
  .hero-actions {
    width: 100%;
    gap: 10px;
    justify-content: flex-start;
  }
  .hero .btn-gold,
  .hero .btn-primary {
    width: min(100%, 320px);
    text-align: center;
  }
  .hero-points {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 24px;
  }
  .hero-points span {
    padding: 8px 11px;
    font-size: 0.76rem;
  }
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .section-title {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-desc {
    max-width: 340px;
    margin-bottom: 32px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pricing-grid,
  .price-list-two-column {
    grid-template-columns: 1fr;
  }
  .pricing-card-wide {
    grid-column: auto;
  }
  .card {
    padding: 24px 20px;
  }
  .card:hover {
    transform: none;
  }
}

@media (max-width: 850px) {
  .salon-showcase {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .video-feature {
    grid-template-columns: 1fr;
    margin-bottom: 52px;
  }
  .photo-collage {
    grid-template-rows: repeat(3, 210px);
  }
  .photo-card-large {
    grid-row: span 1;
  }
  .gallery-grid,
  .gallery-wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }
  .gallery-item-portrait {
    grid-row: auto;
  }
}

@media (max-width: 520px) {
  .photo-collage,
  .gallery-grid {
    display: block;
  }
  .photo-card,
  .gallery-item {
    height: 250px;
    margin-bottom: 16px;
  }
  .gallery-item.gallery-wide {
    height: 300px;
  }
  .gallery-item-portrait {
    height: 390px;
  }
  .gallery-category {
    margin-top: 42px;
  }
  .category-heading {
    margin-bottom: 18px;
  }
  .salon-showcase,
  .gallery-cta,
  .video-feature {
    padding: 22px 18px;
  }
  .showcase-copy h2,
  .gallery-cta h2,
  .video-copy h2 {
    font-size: 1.7rem;
  }
  .video-frame {
    aspect-ratio: 4 / 5;
  }
  .footer {
    padding: 44px 20px 26px;
  }
  .footer-grid {
    gap: 26px;
  }
}

@media (hover: none) {
  .photo-card:hover img,
  .gallery-item:hover img,
  .card:hover,
  .btn-primary:hover,
  .btn-gold:hover {
    transform: none;
  }
}
