/*
  Aurora Frames Studio
  Soft luxury photography website theme
  Blue • Lavender • Pink editorial direction
*/

:root {
  --bg: #f8faff;
  --bg-2: #fdfbff;
  --white: #ffffff;
  --ink: #17142a;
  --muted: #6f6b83;
  --soft: #ede7ff;
  --sky: #64b5ff;
  --lavender: #b388ff;
  --pink: #ff9ecf;
  --accent: #7c4dff;
  --cyan: #4fc3f7;
  --rose: #ff80ab;
  --line: rgba(124, 77, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.64);
  --shadow: 0 30px 90px rgba(92, 87, 153, 0.16);
  --shadow-strong: 0 42px 130px rgba(124, 77, 255, 0.22);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(100, 181, 255, 0.26), transparent 24rem),
    radial-gradient(circle at 90% 0%, rgba(255, 158, 207, 0.3), transparent 28rem),
    linear-gradient(135deg, var(--bg), var(--bg-2) 48%, #ffffff);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 34vw;
  height: 34vw;
  min-width: 260px;
  min-height: 260px;
  border-radius: 999px;
  pointer-events: none;
  z-index: -2;
  filter: blur(70px);
  opacity: 0.55;
  animation: drift 18s var(--ease) infinite alternate;
}

body::before {
  left: -8vw;
  bottom: 22vh;
  background: rgba(100, 181, 255, 0.35);
}

body::after {
  right: -8vw;
  top: 24vh;
  background: rgba(255, 158, 207, 0.35);
  animation-delay: -7s;
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  gap: 16px;
  background:
    radial-gradient(circle at 42% 36%, rgba(179, 136, 255, 0.38), transparent 22rem),
    radial-gradient(circle at 60% 68%, rgba(255, 158, 207, 0.36), transparent 24rem),
    #fdfbff;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__orb {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, var(--sky), var(--lavender), var(--pink), var(--sky));
  box-shadow: 0 0 80px rgba(179, 136, 255, 0.55);
  animation: pulseOrb 1.6s ease-in-out infinite;
  position: relative;
}

.preloader__orb::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.92);
}

.preloader p {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  z-index: 9000;
  background: linear-gradient(90deg, var(--sky), var(--lavender), var(--pink));
  box-shadow: 0 0 20px rgba(179, 136, 255, 0.45);
}

.cursor-glow {
  position: fixed;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 8500;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124, 77, 255, 0.22), rgba(255, 128, 171, 0.08), transparent 70%);
  box-shadow: 0 0 55px rgba(124, 77, 255, 0.32);
  mix-blend-mode: multiply;
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
}

.cursor-glow.is-hovering {
  width: 72px;
  height: 72px;
}

.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.65;
}

.glass {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 7000;
  padding: 0 clamp(18px, 4vw, 64px);
  transition: transform 0.45s var(--ease), top 0.45s var(--ease);
}

.site-header.is-hidden {
  transform: translateY(-130%);
}

.navbar {
  max-width: 1220px;
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 16px 45px rgba(92, 87, 153, 0.1);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.site-header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(124, 77, 255, 0.16);
  box-shadow: 0 18px 60px rgba(92, 87, 153, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), var(--lavender) 48%, var(--pink));
  box-shadow: 0 15px 35px rgba(124, 77, 255, 0.26);
}

.brand__text {
  font-size: 1.05rem;
  white-space: nowrap;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.3vw, 32px);
}

.nav-panel a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(23, 20, 42, 0.78);
  transition: color 0.3s ease;
}

.nav-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--sky), var(--pink));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav-panel a:hover {
  color: var(--accent);
}

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

.nav-cta {
  padding: 13px 20px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  background: linear-gradient(120deg, var(--sky), var(--lavender), var(--pink));
  background-size: 220% 220%;
  box-shadow: 0 18px 40px rgba(124, 77, 255, 0.25);
  animation: gradientShift 7s ease infinite;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 99px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 138px clamp(20px, 5vw, 86px) 88px;
  isolation: isolate;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.95), rgba(248,250,255,0.72)),
    radial-gradient(circle at 26% 25%, rgba(100, 181, 255, 0.32), transparent 28rem),
    radial-gradient(circle at 70% 30%, rgba(179, 136, 255, 0.28), transparent 28rem),
    radial-gradient(circle at 58% 88%, rgba(255, 158, 207, 0.3), transparent 30rem);
  animation: meshBreath 12s ease-in-out infinite alternate;
}

.hero__media {
  position: absolute;
  inset: 92px clamp(16px, 4vw, 70px) 36px;
  overflow: hidden;
  border-radius: clamp(28px, 6vw, 72px);
  z-index: -3;
  box-shadow: var(--shadow-strong);
  transform: perspective(1100px) rotateX(1.5deg);
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.5) 32%, rgba(255,255,255,0.12) 68%, rgba(255,255,255,0.42)),
    radial-gradient(circle at 48% 42%, transparent 0 28%, rgba(255, 255, 255, 0.46) 75%);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-120%);
  animation: lightReflection 9s ease-in-out infinite;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s var(--ease), transform 7s ease;
  filter: saturate(1.02) contrast(0.95) brightness(1.05);
}

.hero__image.active {
  opacity: 1;
  transform: scale(1.01);
}

.hero__content {
  width: min(960px, 100%);
  text-align: center;
  padding-top: 54px;
}

.eyebrow {
  margin: 0 0 18px;
  font-family: "Outfit", sans-serif;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero__title,
.section__intro h2,
.portfolio__header h2,
.experience__text h2,
.pricing__header h2,
.contact__copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: var(--ink);
}

.hero__title {
  font-size: clamp(4rem, 11vw, 10.2rem);
  max-width: 980px;
  margin-inline: auto;
}

.split-text .char {
  display: inline-block;
  transform: translateY(120%) rotateX(58deg);
  opacity: 0;
  filter: blur(10px);
  animation: charRise 1.2s var(--ease) forwards;
  animation-delay: calc(var(--i) * 0.018s + 0.25s);
}

.hero__subtitle {
  max-width: 720px;
  margin: 30px auto 0;
  color: rgba(23, 20, 42, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(120deg, var(--sky), var(--lavender), var(--pink));
  background-size: 240% 240%;
  box-shadow: 0 22px 48px rgba(124, 77, 255, 0.28);
  animation: gradientShift 7s ease infinite;
}

.btn--ghost,
.btn--soft {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(124, 77, 255, 0.14);
  box-shadow: 0 18px 48px rgba(92, 87, 153, 0.11);
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(124, 77, 255, 0.28);
}

.ripple .ripple-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  transform: scale(0);
  animation: ripple 0.72s ease-out;
  pointer-events: none;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 45% 55% 55% 45% / 48% 40% 60% 52%;
  filter: blur(1px);
  opacity: 0.76;
  pointer-events: none;
  z-index: -2;
  animation: morphBlob 13s ease-in-out infinite alternate;
}

.blob--one {
  width: 240px;
  height: 240px;
  left: 8vw;
  top: 24vh;
  background: linear-gradient(135deg, rgba(100,181,255,0.38), rgba(255,255,255,0.24));
}

.blob--two {
  width: 180px;
  height: 180px;
  right: 10vw;
  top: 20vh;
  background: linear-gradient(135deg, rgba(179,136,255,0.34), rgba(255,158,207,0.34));
  animation-delay: -4s;
}

.blob--three {
  width: 150px;
  height: 150px;
  right: 18vw;
  bottom: 14vh;
  background: linear-gradient(135deg, rgba(255,158,207,0.33), rgba(100,181,255,0.28));
  animation-delay: -8s;
}

.hero-card {
  position: absolute;
  width: min(290px, 78vw);
  border-radius: 28px;
  padding: 22px;
  z-index: 4;
}

.hero-card span,
.hero-card small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-card strong {
  display: block;
  margin: 7px 0;
  font-family: "Playfair Display", serif;
  font-size: 1.34rem;
  line-height: 1.1;
}

.hero-card--top {
  top: 24%;
  right: 8%;
  animation: floatSoft 8s ease-in-out infinite;
}

.hero-card--bottom {
  bottom: 14%;
  left: 7%;
  animation: floatSoft 9s ease-in-out infinite reverse;
}

.floating-ribbon {
  position: absolute;
  bottom: 7%;
  right: 7%;
  width: min(450px, 86vw);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  pointer-events: none;
}

.floating-ribbon span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 35px rgba(92, 87, 153, 0.12);
  backdrop-filter: blur(16px);
  animation: ribbonFloat 5s ease-in-out infinite;
}

.floating-ribbon span:nth-child(2) { animation-delay: -0.7s; }
.floating-ribbon span:nth-child(3) { animation-delay: -1.4s; }
.floating-ribbon span:nth-child(4) { animation-delay: -2.1s; }
.floating-ribbon span:nth-child(5) { animation-delay: -2.8s; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(124, 77, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--sky), var(--pink));
  transform: translateX(-50%);
  animation: scrollCue 1.6s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(86px, 11vw, 150px) clamp(20px, 5vw, 86px);
}

.section__intro {
  max-width: 860px;
  margin: 0 auto clamp(46px, 7vw, 86px);
  text-align: center;
}

.section__intro h2,
.portfolio__header h2,
.experience__text h2,
.pricing__header h2,
.contact__copy h2 {
  font-size: clamp(2.5rem, 6vw, 6.2rem);
}

.story__layout,
.contact__layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.story__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transform: rotate(-2deg);
}

.story__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(124,77,255,0.08));
}

.story__image-wrap img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.story__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
}

.story__caption span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), var(--pink));
}

.story__caption p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.story__copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.stat-strip div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
}

.stat-strip strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  background: linear-gradient(120deg, var(--accent), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.portfolio {
  overflow: hidden;
}

.portfolio::before {
  content: "";
  position: absolute;
  inset: 8% -10% auto auto;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,238,255,0.75), transparent 66%);
  z-index: -1;
}

.portfolio__header,
.pricing__header {
  max-width: 1220px;
  margin: 0 auto clamp(46px, 7vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
}

.portfolio__header h2,
.pricing__header h2 {
  max-width: 800px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.filter {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(124, 77, 255, 0.13);
  transition: transform 0.3s var(--ease), color 0.3s ease, background 0.3s ease;
}

.filter:hover,
.filter.active {
  color: var(--white);
  background: linear-gradient(120deg, var(--sky), var(--lavender), var(--pink));
  transform: translateY(-3px);
}

.gallery {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
  perspective: 1100px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(92, 87, 153, 0.16);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: opacity 0.45s ease, transform 0.45s var(--ease), filter 0.45s ease;
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
  filter: blur(8px);
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.8s var(--ease), filter 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.12);
  filter: saturate(1.08) brightness(1.05);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(23,20,42,0.28));
  opacity: 0.75;
  transition: opacity 0.45s ease;
}

.gallery-item:hover::after {
  opacity: 0.95;
}

.gallery-item__shine {
  position: absolute;
  inset: -30%;
  background: linear-gradient(115deg, transparent 28%, rgba(255,255,255,0.44), transparent 60%);
  transform: translateX(-80%) rotate(10deg);
  transition: transform 0.9s var(--ease);
  z-index: 2;
}

.gallery-item:hover .gallery-item__shine {
  transform: translateX(72%) rotate(10deg);
}

.gallery-item__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 18px;
  border-radius: 24px;
  transform: translateY(20px);
  opacity: 0.92;
  transition: transform 0.5s var(--ease), opacity 0.5s ease;
}

.gallery-item:hover .gallery-item__content {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item__content span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-item__content h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.56rem;
}

.services__grid,
.pricing__grid,
.team__grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.price-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 34px;
  border-radius: var(--radius-xl);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s ease;
}

.service-card::before,
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(100,181,255,0.5), rgba(179,136,255,0.15), rgba(255,158,207,0.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.65;
  pointer-events: none;
}

.service-card::after,
.price-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,158,207,0.32), transparent 68%);
  transition: transform 0.55s var(--ease), opacity 0.55s ease;
}

.service-card:hover,
.price-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-strong);
}

.service-card:hover::after,
.price-card:hover::after {
  transform: scale(1.8) translate(-18px, 18px);
  opacity: 0.9;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), var(--lavender), var(--pink));
  box-shadow: 0 20px 45px rgba(124, 77, 255, 0.2);
  font-size: 1.8rem;
  animation: iconBreathe 5s ease-in-out infinite;
}

.service-card h3,
.price-card h3,
.team-card h3 {
  margin: 26px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  line-height: 1.1;
}

.service-card p,
.experience__text p,
.contact__copy p {
  color: var(--muted);
  line-height: 1.85;
}

.experience__canvas {
  max-width: 1220px;
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: center;
  border-radius: clamp(34px, 5vw, 64px);
  padding: clamp(30px, 6vw, 74px);
  overflow: hidden;
  position: relative;
}

.experience__canvas::before {
  content: "";
  position: absolute;
  inset: -50% -20%;
  background:
    radial-gradient(circle at 30% 40%, rgba(100,181,255,0.25), transparent 26rem),
    radial-gradient(circle at 70% 60%, rgba(255,158,207,0.28), transparent 28rem);
  animation: slowSpin 22s linear infinite;
}

.experience__text,
.process-orbit {
  position: relative;
  z-index: 2;
}

.process-orbit {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  width: min(420px, 74vw);
  height: min(420px, 74vw);
  border-radius: 50%;
  border: 1px dashed rgba(124, 77, 255, 0.24);
  animation: rotateRing 24s linear infinite;
}

.orbit-core {
  display: grid;
  place-items: center;
  width: 146px;
  height: 146px;
  border-radius: 50%;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--sky), var(--lavender), var(--pink));
  box-shadow: 0 30px 80px rgba(124, 77, 255, 0.28);
  animation: pulseCore 4s ease-in-out infinite;
}

.orbit-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 20px 48px rgba(92, 87, 153, 0.13);
  color: var(--ink);
  font-weight: 700;
  animation: orbitFloat 6s ease-in-out infinite;
}

.orbit-item span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--rose));
  font-size: 0.78rem;
}

.item-1 { top: 18%; left: 12%; }
.item-2 { top: 18%; right: 8%; animation-delay: -1.3s; }
.item-3 { bottom: 18%; right: 16%; animation-delay: -2.6s; }
.item-4 { bottom: 17%; left: 9%; animation-delay: -3.9s; }

.testimonial-stage {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 42px) clamp(58px, 7vw, 86px);
  overflow: hidden;
}

.testimonial-track {
  min-height: 250px;
  position: relative;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 28px;
  align-items: center;
  opacity: 0;
  transform: translateX(60px) scale(0.96);
  filter: blur(12px);
  pointer-events: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.7s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.testimonial img {
  width: 132px;
  height: 132px;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 22px 48px rgba(92, 87, 153, 0.18);
}

.testimonial p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.testimonial h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

.testimonial span {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
}

.stars {
  color: #ffb44a;
  letter-spacing: 0.1em;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(92, 87, 153, 0.13);
  transform: translateY(-50%);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.08);
  background: #fff;
}

.slider-prev { left: 18px; }
.slider-next { right: 18px; }

.price-card {
  min-height: unset;
}

.price-card--featured {
  transform: translateY(-24px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-strong);
}

.price-card__tag {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(237, 231, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
}

.price {
  margin: 10px 0 24px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  background: linear-gradient(120deg, var(--accent), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-card ul {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 12px 0 12px 28px;
  color: var(--muted);
  border-bottom: 1px solid rgba(124, 77, 255, 0.08);
}

.price-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--rose);
}

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

.team-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

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

.team-card:hover img {
  transform: scale(1.08);
}

.team-card__info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 20px;
  border-radius: 26px;
}

.team-card__info h3 {
  margin: 0 0 6px;
}

.team-card__info span {
  color: var(--accent);
  font-weight: 600;
}

.journal {
  overflow: hidden;
}

.marquee {
  width: calc(100% + 10vw);
  margin-left: -5vw;
  overflow: hidden;
  transform: rotate(-2deg);
  padding: 18px 0;
}

.marquee__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 5rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(124, 77, 255, 0.22);
  white-space: nowrap;
}

.insta-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.insta-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 22px 48px rgba(92, 87, 153, 0.12);
  transition: transform 0.55s var(--ease), box-shadow 0.55s ease;
}

.insta-grid img:nth-child(2),
.insta-grid img:nth-child(5) {
  transform: translateY(34px);
}

.insta-grid img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-strong);
}

.accordion {
  max-width: 890px;
  margin: 0 auto;
}

.accordion-item {
  border-radius: 28px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(124, 77, 255, 0.1);
  box-shadow: 0 18px 50px rgba(92, 87, 153, 0.1);
  overflow: hidden;
}

.accordion-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 700;
}

.accordion-item button::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), var(--pink));
  transition: transform 0.3s var(--ease);
}

.accordion-item.active button::after {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.accordion-panel p {
  margin: 0;
  padding: 0 28px 26px;
  color: var(--muted);
  line-height: 1.8;
}

.contact__copy h2 {
  max-width: 650px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-card {
  padding: 18px 20px;
  border-radius: 22px;
  color: var(--ink);
  font-weight: 600;
  transition: transform 0.35s var(--ease);
}

.contact-card:hover {
  transform: translateX(8px);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
}

.input-group {
  position: relative;
}

.input-group input,
.input-group textarea,
.input-group select,
.newsletter input {
  width: 100%;
  border: 1px solid rgba(124, 77, 255, 0.14);
  border-radius: 20px;
  outline: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.input-group input,
.input-group select {
  height: 62px;
  padding: 18px 18px 8px;
}

.input-group textarea {
  resize: vertical;
  min-height: 128px;
  padding: 24px 18px 12px;
}

.input-group label {
  position: absolute;
  top: 19px;
  left: 18px;
  color: var(--muted);
  pointer-events: none;
  transition: transform 0.22s ease, color 0.22s ease, font-size 0.22s ease;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: rgba(124, 77, 255, 0.38);
  box-shadow: 0 0 0 5px rgba(179, 136, 255, 0.14);
  background: rgba(255, 255, 255, 0.9);
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label,
.input-group select:focus + label,
.input-group select:valid + label {
  transform: translateY(-13px);
  font-size: 0.75rem;
  color: var(--accent);
}

.form-note {
  margin: 0;
  min-height: 24px;
  color: var(--accent);
  font-weight: 600;
}

.map-card {
  max-width: 1180px;
  height: 390px;
  margin: 46px auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.92) contrast(0.95) brightness(1.02);
}

.footer {
  padding: 72px clamp(20px, 5vw, 86px) 34px;
  background:
    radial-gradient(circle at 20% 0%, rgba(100,181,255,0.25), transparent 24rem),
    radial-gradient(circle at 80% 0%, rgba(255,158,207,0.22), transparent 26rem),
    rgba(255,255,255,0.56);
  border-top: 1px solid rgba(124, 77, 255, 0.1);
}

.footer__top,
.footer__grid,
.footer__bottom {
  max-width: 1220px;
  margin-inline: auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 40px;
  align-items: start;
}

.footer p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
}

.newsletter label {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
}

.newsletter div {
  display: flex;
  gap: 10px;
}

.newsletter input {
  height: 56px;
  padding: 0 18px;
}

.newsletter button {
  min-width: 110px;
  border-radius: 18px;
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(120deg, var(--sky), var(--lavender), var(--pink));
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 54px 0;
}

.footer__grid h3 {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
}

.footer__grid a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: var(--muted);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__grid a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(124, 77, 255, 0.12);
  padding-top: 22px;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  color: var(--accent);
  font-weight: 700;
}

.float-action,
.to-top {
  position: fixed;
  z-index: 6500;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), var(--lavender), var(--pink));
  box-shadow: 0 18px 45px rgba(124, 77, 255, 0.25);
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.float-action:hover,
.to-top:hover {
  transform: translateY(-6px) scale(1.04);
}

.float-action--whatsapp {
  right: 24px;
  bottom: 92px;
}

.float-action--call {
  right: 24px;
  bottom: 154px;
}

.to-top {
  right: 24px;
  bottom: 28px;
  opacity: 0;
  pointer-events: none;
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9200;
  display: grid;
  place-items: center;
  padding: 72px clamp(18px, 4vw, 70px) 40px;
  background: rgba(248, 250, 255, 0.78);
  backdrop-filter: blur(28px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 72vh;
  border-radius: 34px;
  object-fit: contain;
  box-shadow: var(--shadow-strong);
  transform: scale(0.94) translateY(22px);
  transition: transform 0.55s var(--ease);
}

.lightbox.open img {
  transform: scale(1) translateY(0);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.72);
  font-size: 2rem;
}

.lightbox__text {
  width: min(720px, 92vw);
  margin-top: -18px;
  padding: 22px;
  border-radius: 26px;
  position: relative;
  z-index: 2;
}

.lightbox__text span {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.lightbox__text h3 {
  margin: 8px 0;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.lightbox__text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-mask {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s ease, clip-path 0.9s var(--ease);
  will-change: transform, opacity, filter;
}

.reveal-up {
  transform: translateY(60px) scale(0.98);
  filter: blur(12px);
}

.reveal-left {
  transform: translateX(-70px) rotate(-2deg);
  filter: blur(12px);
}

.reveal-right {
  transform: translateX(70px) rotate(2deg);
  filter: blur(12px);
}

.reveal-mask {
  clip-path: inset(0 100% 0 0 round 8px);
}

.revealed {
  opacity: 1;
  transform: translate(0, 0) rotate(0) scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0 round 8px);
}

@keyframes pulseOrb {
  0%, 100% { transform: scale(0.9); filter: blur(0); }
  50% { transform: scale(1.08); filter: blur(1px); }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(6vw, -4vh, 0) scale(1.12); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes meshBreath {
  from { filter: hue-rotate(0deg) saturate(1); transform: scale(1); }
  to { filter: hue-rotate(8deg) saturate(1.15); transform: scale(1.04); }
}

@keyframes lightReflection {
  0%, 38% { transform: translateX(-130%) skewX(-12deg); opacity: 0; }
  48% { opacity: 1; }
  66%, 100% { transform: translateX(130%) skewX(-12deg); opacity: 0; }
}

@keyframes charRise {
  to { transform: translateY(0) rotateX(0deg); opacity: 1; filter: blur(0); }
}

@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

@keyframes morphBlob {
  0% { transform: translate(0, 0) rotate(0deg); border-radius: 45% 55% 55% 45% / 48% 40% 60% 52%; }
  50% { transform: translate(16px, -22px) rotate(12deg); border-radius: 58% 42% 46% 54% / 38% 52% 48% 62%; }
  100% { transform: translate(-12px, 18px) rotate(-10deg); border-radius: 42% 58% 60% 40% / 60% 42% 58% 40%; }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0) rotate(0.5deg); }
  50% { transform: translateY(-18px) rotate(-1deg); }
}

@keyframes ribbonFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes scrollCue {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 22px); opacity: 0; }
}

@keyframes iconBreathe {
  0%, 100% { transform: rotate(0) scale(1); }
  50% { transform: rotate(4deg) scale(1.06); }
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@keyframes rotateRing {
  to { transform: rotate(360deg); }
}

@keyframes pulseCore {
  0%, 100% { transform: scale(1); box-shadow: 0 30px 80px rgba(124, 77, 255, 0.28); }
  50% { transform: scale(1.045); box-shadow: 0 40px 110px rgba(255, 128, 171, 0.35); }
}

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1080px) {
  .nav-panel,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: 96px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    transform: translateY(-20px) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

  .nav-panel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-panel a {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .story__layout,
  .contact__layout,
  .experience__canvas,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .hero-card--top {
    top: auto;
    bottom: 20%;
    right: 5%;
  }

  .hero-card--bottom,
  .floating-ribbon {
    display: none;
  }

  .portfolio__header,
  .pricing__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-pills {
    justify-content: flex-start;
  }

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

  .services__grid,
  .pricing__grid,
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card--featured {
    transform: none;
  }

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

@media (max-width: 720px) {
  .cursor-glow {
    display: none;
  }

  .site-header {
    top: 10px;
    padding-inline: 12px;
  }

  .navbar {
    height: 66px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__text {
    font-size: 0.96rem;
  }

  .hero {
    padding: 112px 16px 70px;
  }

  .hero__media {
    inset: 86px 12px 28px;
    border-radius: 34px;
  }

  .hero__media::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.2) 55%, rgba(255,255,255,0.72));
  }

  .hero__content {
    padding-top: 20px;
  }

  .hero__title {
    font-size: clamp(3.3rem, 17vw, 5.4rem);
  }

  .hero__subtitle {
    line-height: 1.65;
  }

  .hero-card--top {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .section {
    padding: 74px 16px;
  }

  .story__image-wrap {
    transform: none;
  }

  .story__image-wrap img {
    height: 470px;
  }

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

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 340px;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  .services__grid,
  .pricing__grid,
  .team__grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .price-card {
    padding: 26px;
    border-radius: 28px;
  }

  .process-orbit {
    min-height: 360px;
  }

  .orbit-core {
    width: 118px;
    height: 118px;
    font-size: 2.4rem;
  }

  .orbit-item {
    min-width: auto;
    font-size: 0.83rem;
    padding: 12px 14px;
  }

  .testimonial-stage {
    padding: 30px 20px 80px;
  }

  .testimonial-track {
    min-height: 430px;
  }

  .testimonial {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .slider-btn {
    top: auto;
    bottom: 20px;
  }

  .slider-prev { left: calc(50% - 58px); }
  .slider-next { right: calc(50% - 58px); }

  .team-card {
    min-height: 460px;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insta-grid img:nth-child(2),
  .insta-grid img:nth-child(5) {
    transform: none;
  }

  .newsletter div,
  .footer__bottom {
    flex-direction: column;
  }

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

  .float-action,
  .to-top {
    width: 48px;
    height: 48px;
    right: 16px;
  }

  .float-action--call { bottom: 142px; }
  .float-action--whatsapp { bottom: 88px; }
  .to-top { bottom: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
