/* =====================================================================
   SALUS STUDIOS — styles.css
   Angle C · "Luminous editorial"
   Type-forward literary refinement on ink. Fraunces at generous optical
   sizes, beautiful measure & leading, cobalt small-caps eyebrows,
   elegant underline-offset links. Quiet atmosphere: a faint CSS grain
   and a soft radial vignette give the ink depth without any boxes.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. TOKENS
   --------------------------------------------------------------------- */
:root {
  /* Brand dark palette (fixed hues) */
  --bg:          #0E1116;
  --fg:          #ECE9E1;
  --fg-soft:     rgba(236, 233, 225, 0.66);
  --muted:       #8C93A3;
  --accent:      #6E8CFF;
  --accent-deep: #1E47B8;
  --hair:        rgba(236, 233, 225, 0.13);

  /* Derived tints */
  --hair-strong: rgba(236, 233, 225, 0.22);
  --accent-soft: color-mix(in srgb, var(--accent) 16%, transparent);
  --accent-glow: color-mix(in srgb, var(--accent-deep) 22%, transparent);
  --accent-faint: color-mix(in srgb, var(--accent) 8%, transparent);
  --fg-faint:    rgba(236, 233, 225, 0.40);
  --bg-raise:    color-mix(in srgb, var(--fg) 3%, var(--bg));

  /* Typography */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Fluid type scale */
  --step--1: clamp(0.82rem, 0.80rem + 0.10vw, 0.90rem);
  --step-0:  clamp(1.02rem, 0.98rem + 0.22vw, 1.18rem);
  --step-1:  clamp(1.28rem, 1.18rem + 0.50vw, 1.62rem);
  --step-2:  clamp(1.70rem, 1.45rem + 1.20vw, 2.55rem);
  --step-3:  clamp(2.30rem, 1.85rem + 2.30vw, 3.90rem);
  --step-4:  clamp(2.90rem, 2.05rem + 4.20vw, 6.30rem);
  --step-5:  clamp(3.20rem, 2.00rem + 7.00vw, 8.60rem);

  /* Rhythm & layout */
  --measure:   62ch;
  --gutter:    clamp(1.35rem, 1rem + 3.4vw, 4.25rem);
  --band-y:    clamp(3.5rem, 2.6rem + 4vw, 7rem);
  --shell:     78rem;

  /* Motion */
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.30, 1);
  --rise:      24px;

  color-scheme: dark;
}

/* ---------------------------------------------------------------------
   2. RESET
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  tab-size: 4;
}

body {
  min-height: 100svh;
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.002em;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }

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

ul { list-style: none; padding: 0; }

::selection {
  background: var(--accent-soft);
  color: var(--fg);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------------------------------------------------------------------
   3. ATMOSPHERE — grain + radial vignette/glow (no boxes, pure depth)
   --------------------------------------------------------------------- */

/* Faint radial glow rising from the upper page + a vignette toward edges */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 82% at 50% -8%,
      var(--accent-glow) 0%,
      transparent 52%),
    radial-gradient(100% 120% at 50% 120%,
      color-mix(in srgb, var(--fg) 4%, transparent) 0%,
      transparent 55%),
    radial-gradient(140% 100% at 50% 38%,
      transparent 58%,
      rgba(5, 7, 11, 0.55) 100%);
}

/* Very subtle film grain, fractal-noise SVG, multiplied over the ink */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Everything real sits above the atmosphere layers */
.masthead,
main,
.footer { position: relative; z-index: 2; }

/* ---------------------------------------------------------------------
   4. MASTHEAD — sticky, translucent, hairline base
   --------------------------------------------------------------------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem clamp(1rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding: clamp(0.9rem, 0.7rem + 0.7vw, 1.35rem) var(--gutter);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--hair);
}

.masthead__mark {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: clamp(1.12rem, 1rem + 0.45vw, 1.42rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--fg);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.masthead__mark:hover { color: var(--accent); }

.masthead__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(0.9rem, 0.5rem + 1.6vw, 2.1rem);
  font-family: var(--body);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.masthead__nav a {
  position: relative;
  color: var(--fg-soft);
  padding-block: 0.25em;
  transition: color 0.28s var(--ease);
}
.masthead__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.02em;
  height: 1px;
  background: var(--accent);
  transition: right 0.34s var(--ease);
}
.masthead__nav a:hover,
.masthead__nav a:focus-visible { color: var(--fg); }
.masthead__nav a:hover::after { right: 0; }

.masthead__nav a[aria-current="page"] {
  color: var(--fg);
}
.masthead__nav a[aria-current="page"]::after {
  right: 0;
  background: var(--accent);
  opacity: 0.9;
}

/* ---------------------------------------------------------------------
   5. PAGE SHELL
   --------------------------------------------------------------------- */
.page {
  display: block;
  padding-bottom: clamp(4rem, 3rem + 5vw, 8rem);
}

/* ---------------------------------------------------------------------
   6. HERO — abstract cobalt light-field over ink (replaces the photo).
   "The Quiet Field": one Fraunces line low in a vast, edgeless field
   of light that continues the body::before atmosphere. Per-page light
   via the --field-* knobs set in §6b. No <img>, no scrim-over-photo.
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;         /* the one line sits low, space breathes above */
  min-height: clamp(32rem, 26rem + 44vh, 56rem);
  padding: clamp(4.5rem, 3rem + 9vh, 11rem) var(--gutter)
           clamp(2.75rem, 2rem + 4vw, 5.5rem);
  overflow: clip;

  /* Per-page atmosphere knobs — overridden per page in §6b. Defaults = home. */
  --field-x: 50%;        /* horizontal centre of the aurora        */
  --field-y: 94%;        /* vertical centre of the aurora          */
  --field-spread: 72%;   /* how far the cobalt glow reaches        */
  --field-tilt: 206deg;  /* angle of the low-contrast weather sweep */
  --field-lift: -6%;     /* cool breath descending from the masthead */
}

/* The light-field itself: layered radials + one slow conic "dawn", masked
   to a soft oval so it has NO edge and never becomes a shape or panel.
   Overscanned with inset so the MASK (not a border) defines its falloff. */
.hero::before {
  content: "";
  position: absolute;
  inset: -22% -12%;
  z-index: -2;
  background:
    /* 1 — the aurora: cobalt core bleeding into deep blue, off-centre */
    radial-gradient(118% 86% at var(--field-x) var(--field-y),
      color-mix(in srgb, var(--accent) 34%, transparent) 0%,
      color-mix(in srgb, var(--accent-deep) 28%, transparent) 26%,
      var(--accent-faint) 48%,
      transparent var(--field-spread)),
    /* 2 — a single slow conic dawn: the only hint of structure, very low contrast */
    conic-gradient(from var(--field-tilt) at 30% 82%,
      transparent 0deg,
      color-mix(in srgb, var(--accent-deep) 18%, transparent) 64deg,
      transparent 150deg,
      var(--accent-faint) 300deg,
      transparent 360deg),
    /* 3 — cool breath descending from the masthead, continues body::before */
    radial-gradient(140% 64% at 50% var(--field-lift),
      color-mix(in srgb, var(--accent) 12%, transparent) 0%,
      transparent 52%);
  /* edgeless: fade the whole field to nothing toward every side */
  -webkit-mask-image: radial-gradient(122% 100% at var(--field-x) 64%,
    #000 0%, transparent 80%);
          mask-image: radial-gradient(122% 100% at var(--field-x) 64%,
    #000 0%, transparent 80%);
  will-change: transform;
}

/* An ink floor: pull the lower edge deep so the Fraunces line always has
   contrast, plus a faint bone highlight far from the type to keep the
   field alive. Sits ABOVE the field, BELOW the type. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    /* ink floor for type contrast — soft, no hard line */
    linear-gradient(to top,
      rgba(8, 10, 14, 0.92) 0%,
      rgba(8, 10, 14, 0.55) 30%,
      transparent 66%),
    /* a faint bone highlight far from the type, keeps the field alive */
    radial-gradient(58% 42% at 80% 26%,
      color-mix(in srgb, var(--fg) 5%, transparent) 0%, transparent 60%);
}

.hero__text {
  position: relative;
  max-width: 30ch;               /* tighter measure forces the headline to wrap big */
  width: min(100%, var(--shell));
}

/* Eyebrow demoted to a faint cobalt tick — present, almost silent */
.hero .eyebrow {
  color: color-mix(in srgb, var(--accent) 80%, var(--fg));
  letter-spacing: 0.3em;
}

/* The single event: oversized Fraunces, the only thing that "happens". */
.hero__head {
  margin-top: clamp(1rem, 0.6rem + 1.4vw, 2rem);
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 400;              /* lighter weight reads as quiet, not loud */
  font-size: var(--step-5);
  line-height: 0.97;
  letter-spacing: -0.026em;
  text-wrap: balance;
}

/* The sub stays — small against the giant head, but PRESENT so the page
   reads as an operating company, not an art project. */
.hero .lede {
  margin-top: clamp(1.4rem, 1rem + 1.6vw, 2.4rem);
  max-width: 42ch;
  color: var(--fg-soft);
  font-size: var(--step-1);
}

/* ---------------------------------------------------------------------
   6b. PER-PAGE LIGHT — four distinct rooms of the same cobalt weather.
   Keyed by the .page-<slug> class on <article>. No two pages share a light.
   --------------------------------------------------------------------- */
.page-home     .hero { --field-x: 50%; --field-y: 96%; --field-tilt: 206deg; --field-spread: 74%; }
.page-approach .hero { --field-x: 12%; --field-y: 82%; --field-tilt: 96deg;  --field-spread: 84%; }
.page-studio   .hero { --field-x: 80%; --field-y: 90%; --field-tilt: 250deg; --field-spread: 66%; --field-lift: 4%; }
.page-contact  .hero { --field-x: 34%; --field-y: 22%; --field-tilt: 34deg;  --field-spread: 58%; }

/* ---------------------------------------------------------------------
   6c. MOTION — the field breathes like slow weather (transform ONLY,
   compositor-cheap; no filter animation).
   --------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .hero::before {
    animation: fieldDrift 38s var(--ease) infinite alternate;
  }
}
@keyframes fieldDrift {
  from { transform: translate3d(-1.4%, 0.6%, 0) scale(1.00); }
  to   { transform: translate3d( 2.2%, -1.4%, 0) scale(1.05); }
}

/* ---------------------------------------------------------------------
   7. SHARED TYPE PRIMITIVES
   --------------------------------------------------------------------- */
.display {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* Cobalt small-caps eyebrow — the signature literary label */
.eyebrow {
  font-family: var(--body);
  font-size: var(--step--1);
  font-weight: 600;
  text-transform: uppercase;
  font-feature-settings: "kern" 1;
  letter-spacing: 0.22em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
}
.eyebrow::before {
  content: "";
  width: clamp(1.4rem, 1rem + 1.5vw, 2.6rem);
  height: 1px;
  background: currentColor;
  opacity: 0.85;
  flex: none;
}

.lede {
  font-family: var(--body);
  font-size: var(--step-1);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.004em;
  color: var(--fg);
  text-wrap: pretty;
}

/* ---------------------------------------------------------------------
   8. BAND — asymmetric editorial split: sticky heading | flowing body
   --------------------------------------------------------------------- */
.band {
  padding-block: var(--band-y);
}

.band__inner {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
}

.band__head {
  font-size: var(--step-2);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--fg);
  text-wrap: balance;
}
/* Faint cobalt index tick beside section headings */
.band__head::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin-bottom: 0.85rem;
  background: var(--accent);
  opacity: 0.85;
}

.band__body {
  max-width: var(--measure);
  color: var(--fg-soft);
  display: grid;
  gap: 1.1em;
}
.band__body p {
  font-size: var(--step-0);
  line-height: 1.62;
  text-wrap: pretty;
}
.band__body p:first-of-type {
  color: var(--fg);
}

/* Two-column asymmetry on wider screens: sticky heading rail + body */
@media (min-width: 52rem) {
  .band__inner {
    grid-template-columns: minmax(13rem, 0.85fr) minmax(0, 1.55fr);
    gap: clamp(2.5rem, 1rem + 5vw, 6rem);
    align-items: start;
  }
  .band__head {
    position: sticky;
    top: calc(4.5rem + env(safe-area-inset-top, 0px));
    align-self: start;
  }
}

/* ---------------------------------------------------------------------
   9. POINTS — hairline-divided list, hanging cobalt markers, no bullets-in-boxes
   --------------------------------------------------------------------- */
.points {
  margin-top: 0.4em;
  display: grid;
  border-top: 1px solid var(--hair);
}
.points li {
  position: relative;
  padding: 0.95em 0 0.95em 1.6em;
  border-bottom: 1px solid var(--hair);
  color: var(--fg-soft);
  font-size: var(--step-0);
  line-height: 1.5;
  text-wrap: pretty;
}
.points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.42em;
  width: 0.55em;
  height: 1px;
  background: var(--accent);
}

/* ---------------------------------------------------------------------
   10. (removed) — the literal "stack" venture index was deleted with the
   redesign; the studio no longer enumerates products. Light + type lead.
   --------------------------------------------------------------------- */

/* ---------------------------------------------------------------------
   11. LINKS — elegant underline-offset, cobalt on hover
   --------------------------------------------------------------------- */
.link {
  color: var(--fg);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--hair-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
  transition: color 0.26s var(--ease),
              text-decoration-color 0.26s var(--ease),
              text-underline-offset 0.26s var(--ease);
}
.link:hover,
.link:focus-visible {
  color: var(--accent);
  text-decoration-color: var(--accent);
  text-underline-offset: 0.36em;
}

/* External links read quieter, tertiary, with a trailing diacritic mark */
.link--ext {
  color: var(--muted);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
.link--ext::after {
  content: " ↗";
  font-style: normal;
  font-feature-settings: normal;
  opacity: 0.7;
}
.link--ext:hover,
.link--ext:focus-visible {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* ---------------------------------------------------------------------
   12. RULES — hairline dividers, full-width and soft variants
   --------------------------------------------------------------------- */
.rule {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  border: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--hair-strong) 12%,
    var(--hair-strong) 88%,
    transparent);
}
/* Inset the full rules to the page gutter so they don't kiss the edges */
.page > .rule {
  width: calc(100% - 2 * var(--gutter));
}

.rule--soft {
  background: var(--hair);
  height: 1px;
  max-width: 100%;
  width: 100%;
  margin: 0;
}

/* ---------------------------------------------------------------------
   13. CTA — oversized Fraunces invitation with a sliding cobalt arrow
   --------------------------------------------------------------------- */
.cta {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding: clamp(3.5rem, 2.5rem + 5vw, 7rem) var(--gutter)
           clamp(2rem, 1.5rem + 2vw, 4rem);
}

.cta__link {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.1em 0.35em;
  font-size: var(--step-3);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-wrap: balance;
  transition: color 0.3s var(--ease);
}
.cta__link:hover,
.cta__link:focus-visible { color: var(--accent); }

.cta__arr {
  display: inline-block;
  color: var(--accent);
  font-style: normal;
  transition: transform 0.4s var(--ease-out);
  will-change: transform;
}
.cta__link:hover .cta__arr,
.cta__link:focus-visible .cta__arr {
  transform: translateX(0.35em);
}

/* ---------------------------------------------------------------------
   14. FOOTER — three-part editorial colophon, hairline top
   --------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--hair);
  padding-block: clamp(3rem, 2rem + 4vw, 5.5rem);
  margin-top: clamp(2rem, 1rem + 4vw, 5rem);
}

.footer__inner {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  gap: clamp(2rem, 1.5rem + 2vw, 3rem) clamp(2rem, 1rem + 4vw, 5rem);
}

.footer__mark {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: clamp(1.4rem, 1.2rem + 0.7vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--fg);
}

.footer__legal {
  margin-top: 0.85rem;
  max-width: 46ch;
  font-size: var(--step--1);
  line-height: 1.65;
  color: var(--muted);
  text-wrap: pretty;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.footer__nav a {
  color: var(--fg-soft);
  width: max-content;
  text-underline-offset: 0.25em;
  text-decoration-color: transparent;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  transition: color 0.26s var(--ease), text-decoration-color 0.26s var(--ease);
}
.footer__nav a:hover,
.footer__nav a:focus-visible {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.footer__contacts {
  display: grid;
  gap: 0.65rem;
  font-size: var(--step--1);
  color: var(--fg-soft);
  align-content: start;
}
.footer__contacts p { line-height: 1.55; }

@media (min-width: 46rem) {
  .footer__inner {
    grid-template-columns: 1.5fr auto 1.3fr;
    align-items: start;
  }
}

/* ---------------------------------------------------------------------
   15. PAGE-LOAD REVEAL — single orchestrated, staggered, CSS-only
   --------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow,
  .hero__head,
  .hero .lede {
    opacity: 0;
    transform: translateY(var(--rise));
    animation: reveal 0.9s var(--ease-out) forwards;
  }
  .hero .eyebrow { animation-delay: 0.08s; }
  .hero__head   { animation-delay: 0.20s; }
  .hero .lede   { animation-delay: 0.36s; }

  /* Bands lift gently on first paint */
  .band__inner,
  .cta__link {
    opacity: 0;
    transform: translateY(calc(var(--rise) * 0.7));
    animation: reveal 0.85s var(--ease-out) forwards;
    animation-delay: 0.30s;
  }
}

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

/* ---------------------------------------------------------------------
   16. REDUCED MOTION — kill all transforms/animation
   --------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero .eyebrow,
  .hero__head,
  .hero .lede,
  .band__inner,
  .cta__link {
    opacity: 1 !important;
    transform: none !important;
  }
  .cta__link:hover .cta__arr,
  .cta__link:focus-visible .cta__arr { transform: none; }
}

/* ---------------------------------------------------------------------
   17. SMALL-SCREEN REFINEMENTS
   --------------------------------------------------------------------- */
@media (max-width: 32rem) {
  .masthead {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
  .masthead__nav { gap: 0.85rem 1.2rem; }
  .eyebrow::before { width: 1.2rem; }
}

/* Respect users who prefer not to load decorative grain on slow paint:
   the grain layer is already cheap (static SVG), so it stays — but on
   very small screens we trim the radial vignette slightly for clarity. */
@media (max-width: 32rem) {
  body::before { background-size: cover; }
}

/* ---------------------------------------------------------------------
   18. REDUCED-MOTION FIELD — must come AFTER §16. The global reduce block
   sets animation-duration:0.001ms on *,::before,::after, which would
   freeze fieldDrift at its FROM frame; this resolves the light-field to a
   deliberately-composed STILL frame instead.
   --------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none !important;
    transform: translate3d(0.6%, -0.6%, 0) scale(1.03);
  }
}
