/* ========== Tokens ========== */
:root {
  --bg: #faf6f3;
  --bg-deep: #f0e8e2;
  --surface: #ffffff;
  --ink: #2a211c;
  --ink-soft: #5c4f47;
  --muted: #8a7a70;
  --line: rgba(42, 33, 28, 0.1);
  --blush: #e8b4b0;
  --blush-deep: #c97b76;
  --rose: #d4a5a0;
  --gold: #c4a574;
  --gold-soft: #e8d5b5;
  --cream: #f7f0ea;
  --shadow: 0 20px 50px rgba(42, 33, 28, 0.08);
  --shadow-sm: 0 8px 24px rgba(42, 33, 28, 0.06);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ========== Typography ========== */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-lead {
  margin-top: 0.85rem;
  max-width: 36rem;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.05rem;
}

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

.section-header .section-lead {
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 10vw, 7rem) 0;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ink) 0%, #3d322c 100%);
  color: #faf6f3;
  box-shadow: 0 10px 30px rgba(42, 33, 28, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(42, 33, 28, 0.28);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--blush-deep);
  background: rgba(232, 180, 176, 0.12);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
  background: var(--ink);
  color: var(--bg);
}

.btn-sm:hover {
  background: var(--blush-deep);
}

.btn-full {
  width: 100%;
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}

.header.scrolled {
  background: rgba(250, 246, 243, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 2.5rem));
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 110;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(201, 123, 118, 0.3);
  background: #fff;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer .logo-img {
  width: 52px;
  height: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.lang-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  color: var(--muted);
  transition: background 0.25s ease, color 0.25s ease;
}

.lang-btn.is-active {
  background: var(--ink);
  color: var(--bg);
}

.lang-btn:not(.is-active):hover {
  color: var(--ink);
}

.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-soft);
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--blush-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav-links a:not(.btn):hover {
  color: var(--ink);
}

.nav-links a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-orb-1 {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  top: -10%;
  right: -8%;
  background: radial-gradient(circle, rgba(232, 180, 176, 0.55) 0%, transparent 70%);
}

.hero-orb-2 {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  bottom: 5%;
  left: -5%;
  background: radial-gradient(circle, rgba(232, 213, 181, 0.45) 0%, transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 33, 28, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 33, 28, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 5.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--blush-deep), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.1;
}

.stat span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blush-deep), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.7);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s var(--ease) forwards;
}

.animate-in:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-in:nth-child(2) {
  animation-delay: 0.22s;
}
.animate-in:nth-child(3) {
  animation-delay: 0.34s;
}
.animate-in:nth-child(4) {
  animation-delay: 0.46s;
}
.animate-in:nth-child(5) {
  animation-delay: 0.58s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Services ========== */
.services {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 50%, var(--bg) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 0 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 123, 118, 0.25);
}

.service-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-deep);
  margin-bottom: 1.15rem;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

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

.service-card h3,
.service-card > p,
.service-card .service-list,
.service-card .service-link {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.service-card .service-link {
  margin-top: auto;
  padding-top: 0.25rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.service-card > p,
.wax-content > p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 0.98rem;
  margin-bottom: 1.15rem;
  flex-grow: 0;
}

.service-list {
  margin-bottom: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-list.horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.service-list li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-left: 1rem;
  position: relative;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blush);
}

.service-link {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--blush-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s var(--ease);
}

.service-link:hover {
  gap: 0.7rem;
}

/* ========== About ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 420px;
}

.about-photo {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(155deg, var(--blush) 0%, var(--rose) 40%, var(--gold-soft) 100%);
  padding: 3px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.about-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.about-badge span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.about-copy .section-title {
  margin-bottom: 1.25rem;
}

.about-copy p {
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1rem;
  max-width: 36rem;
}

.about-points {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232, 180, 176, 0.25);
  color: var(--blush-deep);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ========== Gallery ========== */
.gallery {
  padding-top: 2rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}

.gallery-item {
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  display: flex;
  align-items: flex-end;
  padding: 1.15rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--bg-deep);
  transition: transform 0.4s var(--ease);
}

.gallery-item:nth-child(even) {
  margin-top: 1.5rem;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
}

.gallery-item:nth-child(even):hover {
  transform: translateY(calc(1.5rem - 6px)) scale(1.02);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.02em;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to top, rgba(42, 33, 28, 0.55) 0%, transparent 55%);
  pointer-events: none;
}

/* ========== Book / Contact ========== */
.book {
  background: var(--cream);
  position: relative;
}

.book::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}

.contact-details {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem 1.5rem;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.contact-item a,
.contact-item > span:not(.contact-label):not(.contact-note) {
  font-size: 0.98rem;
  color: var(--ink);
}

.contact-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.4;
}

.contact-item a:hover {
  color: var(--blush-deep);
}

.book-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.optional {
  font-weight: 400;
  color: var(--muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blush);
  box-shadow: 0 0 0 3px rgba(232, 180, 176, 0.25);
}

.form-row textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  min-height: 1.25em;
  text-align: center;
}

.form-note.success {
  color: #3d6b4f;
}

.form-note.error {
  color: #a04545;
}

/* ========== Footer ========== */
.footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-tag {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ========== Responsive ========== */
@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:nth-child(even) {
    margin-top: 0;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(6) {
    margin-top: 1.25rem;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .book-grid {
    grid-template-columns: 1fr;
  }

  .about-frame {
    max-width: 340px;
    margin-inline: auto;
  }

  .about-badge {
    right: 0;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(250, 246, 243, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a:not(.btn) {
    font-family: var(--font-display);
    font-size: 1.75rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .stat-divider {
    display: none;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(6) {
    margin-top: 0;
  }

  .gallery-item:nth-child(even) {
    margin-top: 1rem;
  }

  .nav-links .lang-switch {
    margin: 0.5rem 0;
  }

  .hero-scroll {
    display: none;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.service-card.reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.service-card.reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.service-card.reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.service-card.reveal:nth-child(5) {
  transition-delay: 0.1s;
}

.gallery-item.reveal:nth-child(2) {
  transition-delay: 0.06s;
}
.gallery-item.reveal:nth-child(3) {
  transition-delay: 0.12s;
}
.gallery-item.reveal:nth-child(4) {
  transition-delay: 0.18s;
}
.gallery-item.reveal:nth-child(5) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .animate-in,
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-line {
    animation: none;
  }

  .service-card:hover,
  .gallery-item:hover,
  .btn:hover {
    transform: none;
  }
}
