/* ============================================================
   HANAE ✿ — Dusty Blue Portfolio (seol nene inspired)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:ital,wght@0,400;0,600;0,700;0,800;1,700&family=Quicksand:wght@500;600;700&family=Pacifico&display=swap');

/* ── Variables ── */
:root {
  --bg: #FFF0F3;
  --bg2: #FDE7EC;
  --surface: #FFFFFF;
  --white: #FFFFFF;
  --surf2: #FFF5F7;
  --surf3: #FCE8ED;
  /* accent: Peony & Espresso */
  --pink: #F4C9D6;
  --pink-d: #3E2723;
  --pink-l: #FAE1E8;
  --pink-ll: #FFF5F7;
  --pink-m: #F8D7E0;
  /* secondary soft tones */
  --lavender: #F3E8FF;
  --sky: #FAE1E8;
  --mint: #F0FDF4;
  --yellow: #FEF9C3;
  --cream: #FFFBF0;
  --text: #3E2723;
  --txt: #3E2723;
  --txt2: rgba(62, 39, 35, 0.70);
  --txm: rgba(62, 39, 35, 0.44);
  --border: rgba(244, 201, 214, 0.25);
  --border2: rgba(244, 201, 214, 0.48);
  --s1: 0 4px 20px rgba(62, 39, 35, 0.08);
  --s2: 0 8px 32px rgba(62, 39, 35, 0.12);
  --s3: 0 16px 48px rgba(62, 39, 35, 0.16);
  --s4: 0 24px 72px rgba(62, 39, 35, 0.22);
  --nav-h: 72px;
  --r-sm: 14px;
  --r-md: 24px;
  --r-lg: 40px;
  --rf: 99px;
  --ease-b: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-s: cubic-bezier(0.4, 0, 0.2, 1);
  --ff-display: 'Fredoka', sans-serif;
  --ff-logo: 'Pacifico', cursive;
  --ff-ui: 'Nunito', sans-serif;
  --ff-body: 'Quicksand', sans-serif;
  --g-btn: linear-gradient(135deg, #F4C9D6, #F8D7E0, #E0A6B5);
  --g-hero: linear-gradient(145deg, #FFF5F7 0%, #FCE8ED 40%, #F8D7E0 100%);
  --g-card: linear-gradient(145deg, #FFFFFF 0%, #FFF5F7 100%);
}



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

html, body {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

html::-webkit-scrollbar, 
body::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Brave */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  padding-top: var(--nav-h);
  transition: background .4s, color .4s;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='8' cy='11' r='2.5' fill='%23F4C9D6' stroke='%233E2723' stroke-width='1.5'/%3E%3Ccircle cx='12' cy='9' r='2.5' fill='%23F4C9D6' stroke='%233E2723' stroke-width='1.5'/%3E%3Ccircle cx='16' cy='11' r='2.5' fill='%23F4C9D6' stroke='%233E2723' stroke-width='1.5'/%3E%3Cpath d='M12 14c-2.5 0-4.5 1.5-4.5 3.5 0 1.5 1 2.5 2.5 2.5h4c1.5 0 2.5-1 2.5-2.5 0-2-2-3.5-4.5-3.5z' fill='%23F4C9D6' stroke='%233E2723' stroke-width='1.5'/%3E%3C/svg%3E") 12 12, auto;
}

button, a, [role="button"], .filter-tab {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24'%3E%3Ccircle cx='8' cy='11' r='2.5' fill='%23F4C9D6' stroke='%233E2723' stroke-width='1.5'/%3E%3Ccircle cx='12' cy='9' r='2.5' fill='%23F4C9D6' stroke='%233E2723' stroke-width='1.5'/%3E%3Ccircle cx='16' cy='11' r='2.5' fill='%23F4C9D6' stroke='%233E2723' stroke-width='1.5'/%3E%3Cpath d='M12 14c-2.5 0-4.5 1.5-4.5 3.5 0 1.5 1 2.5 2.5 2.5h4c1.5 0 2.5-1 2.5-2.5 0-2-2-3.5-4.5-3.5z' fill='%23F4C9D6' stroke='%233E2723' stroke-width='1.5'/%3E%3C/svg%3E") 14 14, pointer !important;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

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

/* ── Animations ── */
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes pageExit {
  to {
    opacity: 0;
    transform: translateY(-8px)
  }
}

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

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

@keyframes sparkle {

  0%,
  100% {
    transform: translateY(0) rotate(0);
    opacity: .6
  }

  50% {
    transform: translateY(-18px) rotate(15deg);
    opacity: 1
  }
}

@keyframes blobDrift {
  to {
    transform: translate(24px, 16px) scale(1.06)
  }
}

@keyframes shimmer {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.5)
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(.85) translateY(24px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes pinkGlow {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(244, 201, 214, .22)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(244, 201, 214, .42)
  }
}

@keyframes barFill {
  from {
    width: 0
  }
}

/* Hero animations */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-120px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-120px)
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

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

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.25)
  }
}

@keyframes frameGlow {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(244, 201, 214, .28), 0 0 60px rgba(244, 201, 214, .15), 0 30px 80px rgba(244, 201, 214, .18)
  }

  50% {
    box-shadow: 0 0 50px rgba(244, 201, 214, .50), 0 0 90px rgba(244, 201, 214, .28), 0 40px 100px rgba(244, 201, 214, .28)
  }
}

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

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0) rotate(-6deg)
  }

  50% {
    transform: translateY(-8px) rotate(-6deg)
  }
}

@keyframes floatBadge2 {

  0%,
  100% {
    transform: translateY(0) rotate(8deg)
  }

  50% {
    transform: translateY(-10px) rotate(8deg)
  }
}



/* ════════════════ LOADER ════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity .6s, visibility .6s;
}

.loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* From Uiverse.io by esraaabdel-kareem - Modified for Dusty Blue Theme */
.loader-animation {
  width: 100px;
  height: 100px;
  position: relative;
  animation: shake 3s infinite ease-in-out;
}

.cup {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 40px;
  background-color: var(--pink);
  border: 2px solid var(--pink-d);
  border-radius: 4px 4px 14px 14px;
  z-index: 1;
  animation: cupPulse 6s infinite ease-in-out;
}

.cup::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2px);
  height: 8px;
  background: var(--pink);
  border: 2px solid var(--pink-d);
  border-top: none;
  border-radius: 50%;
  z-index: -1;
  animation: cupPulse 6s infinite ease-in-out;
}

.cup::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 1px;
  width: calc(100% - 4px);
  height: 6px;
  background: var(--pink-l);
  border: 1.5px solid var(--pink-d);
  border-radius: 50%;
  animation: coffeeGlow 6s infinite ease-in-out;
}

.cup-handle {
  position: absolute;
  top: 6px;
  right: -12px;
  width: 14px;
  height: 20px;
  border: 2.5px solid var(--pink-d);
  border-left: none;
  border-radius: 0 12px 12px 0;
  background: transparent;
}

.smoke {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 10px;
  height: 25px;
  background: rgba(244, 201, 214, 0.4);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: rise 3s infinite ease-in-out;
  filter: blur(5px);
}

.smoke.one { animation-delay: 0s; }
.smoke.two { animation-delay: 0.8s; }
.smoke.three { animation-delay: 1.6s; }

.load-text {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 800;
  color: var(--pink-d);
  opacity: 0.8;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

@keyframes rise {
  0% { transform: translate(-50%, 0) scale(0.4); opacity: 0; }
  30% { opacity: 0.7; }
  60% { opacity: 0.4; }
  100% { transform: translate(-50%, -100px) scale(1.1); opacity: 0; }
}

@keyframes shake {
  0% { transform: translateX(0) translateY(0) rotate(0); }
  25% { transform: translateX(-4px) translateY(-2px) rotate(-3deg); }
  50% { transform: translateX(0) translateY(0) rotate(0); }
  75% { transform: translateX(4px) translateY(-2px) rotate(3deg); }
  100% { transform: translateX(0) translateY(0) rotate(0); }
}

@keyframes cupPulse {
  0%, 100% { background-color: var(--pink); }
  50% { background-color: var(--pink-m); }
}

@keyframes coffeeGlow {
  0%, 100% { background: var(--pink-l); }
  50% { background: var(--pink-ll); }
}

/* ════════════════ NAVBAR ════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(253, 231, 236, .90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid var(--border);
  transition: background .3s, box-shadow .3s;
}

.navbar.scrolled {
  background: rgba(253, 231, 236, .98);
  box-shadow: var(--s2);
}



.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 1.5rem;
}

/* Logo — text only */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  transition: all .3s var(--ease-b);
}

.nav-logo:hover {
  transform: scale(1.04);
  background: none;
}

.nav-logo-text {
  font-family: var(--ff-logo);
  font-size: 1.1rem;
  color: var(--pink-d); /* Espresso Brown */
  letter-spacing: .01em;
}

/* Center links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin: 0 auto;
}

.nav-link {
  padding: .45rem 1rem;
  border-radius: var(--rf);
  font-family: var(--ff-ui);
  font-size: .875rem;
  font-weight: 700;
  color: var(--txt2);
  letter-spacing: .02em;
  position: relative;
  transition: color .3s, background .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 2.5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pink), var(--pink-d), var(--pink-m));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity .4s var(--ease-b), transform .4s var(--ease-b);
  box-shadow: 0 0 12px rgba(62, 39, 35, .4);
}

.nav-link:hover {
  color: var(--pink);
  background: var(--pink-ll);
}

.nav-link:hover::after {
  opacity: 0.6;
  transform: scaleX(1);
}

.nav-link.active {
  background: var(--pink-d); /* Espresso */
  color: white !important;
  border-radius: var(--rf);
  padding: 0.5rem 1.4rem;
  box-shadow: var(--s2);
}

.nav-link.active::after {
  display: none;
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}



.nav-cta-btn {
  padding: .5rem 1.2rem;
  border-radius: var(--rf);
  font-family: var(--ff-ui);
  font-size: .82rem;
  font-weight: 800;
  background: var(--g-btn);
  color: #fff;
  box-shadow: 0 4px 16px rgba(62, 39, 35, .30);
  transition: transform .3s var(--ease-b), box-shadow .3s;
  letter-spacing: .03em;
}

.nav-cta-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(62, 39, 35, .48);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: background .2s;
}

.nav-burger:hover {
  background: var(--pink-ll);
}

.burger-bar {
  height: 2px;
  border-radius: 99px;
  background: var(--txt2);
  transition: all .3s;
}

.nav-burger.open .burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.open .burger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-burger.open .burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mob-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(253, 246, 239, .98);
  backdrop-filter: blur(20px);
  border-bottom: 1.5px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .35s var(--ease-s), opacity .35s;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  pointer-events: none;
}



.mob-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mob-nav {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.mob-link {
  width: 100%;
  text-align: left;
  padding: .7rem 1rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 700;
  color: var(--txt2);
  transition: all .22s;
}

.mob-link:hover,
.mob-link.active {
  background: var(--pink-ll);
  color: var(--pink);
}

.mob-footer {
  padding-top: .8rem;
}

.mob-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: .8rem;
}



.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(0, 0, 0, .22);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s;
}

.mob-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ════════════════ LAYOUT ════════════════ */
.page {
  position: relative;
  animation: pageIn .5s var(--ease-s) both;
  background: var(--g-hero);
  overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
}

.page::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(244, 201, 214, .13) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.page-exit {
  animation: pageExit .28s ease forwards;
}

.page-section {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 1;
}

.container-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 1;
}

.main {
  min-height: calc(100vh - var(--nav-h));
  background: var(--g-hero);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s, transform .6s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

/* ════════════════ COMMON ════════════════ */
.section-eyebrow {
  font-size: .68rem;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: .75rem;
}

.section-title span {
  color: var(--pink);
}

.section-sub {
  font-size: .94rem;
  color: var(--txt2);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--pink-ll);
  border: 1.5px solid var(--border2);
  color: var(--pink);
  padding: .3rem .9rem;
  border-radius: var(--rf);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 1rem;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 6px rgba(74, 222, 128, .6);
  animation: dotPulse 2s infinite;
  flex-shrink: 0;
}

.demo-banner {
  background: rgba(255, 240, 100, .1);
  border: 1.5px solid rgba(255, 240, 100, .4);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
  font-size: .82rem;
  color: var(--txt2);
  margin-bottom: 1.4rem;
}

.demo-banner code {
  background: rgba(0, 0, 0, .07);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: .78rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--rf);
  font-family: var(--ff-ui);
  font-size: .9rem;
  font-weight: 800;
  background: var(--g-btn);
  color: #fff;
  box-shadow: 0 6px 22px rgba(62, 39, 35, .30);
  transition: transform .3s var(--ease-b), box-shadow .3s;
  letter-spacing: .03em;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(62, 39, 35, .48);
}

.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .82rem 2rem;
  border-radius: var(--rf);
  font-family: var(--ff-ui);
  font-size: .9rem;
  font-weight: 800;
  border-radius: var(--rf);
  background: var(--g-btn);
  color: var(--white);
  gap: 0.6rem;
}

.btn-soft:hover {
  background: var(--g-btn);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(62, 39, 35, .30);
}

/* Hero-specific buttons */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .82rem 2rem;
  border-radius: var(--rf);
  font-family: var(--ff-ui);
  font-size: .9rem;
  font-weight: 800;
  background: var(--g-btn);
  color: #fff;
  box-shadow: 0 6px 22px rgba(62, 39, 35, .30);
  transition: transform .3s var(--ease-b), box-shadow .3s;
  letter-spacing: .03em;
}

.hero-btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(62, 39, 35, .48);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .82rem 2rem;
  font-size: .9rem;
  font-weight: 800;
  border-radius: var(--rf);
  font-family: var(--ff-ui);
  background: white;
  color: #E0A6B5;
  border: 2px solid #E0A6B5;
  transition: all .3s var(--ease-b);
  letter-spacing: .03em;
}

.hero-btn-ghost:hover {
  background: var(--pink-ll);
  border-color: var(--pink);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(62, 39, 35, .20);
}

/* ════════════════ HOME — HERO ════════════════ */
.home-page {
  background: var(--bg);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.home-page::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(244, 201, 214, .13) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

/* Floating blobs */
.home-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .45;
  animation: blobDrift 12s ease-in-out infinite alternate;
}

.blob-1 {
  width: 420px;
  height: 420px;
  top: -10%;
  left: -8%;
  background: var(--pink);
  animation-duration: 13s;
}

.blob-2 {
  width: 360px;
  height: 360px;
  bottom: -8%;
  right: -6%;
  background: var(--pink-l);
  animation-direction: alternate-reverse;
}

.blob-3 {
  width: 300px;
  height: 300px;
  top: 30%;
  left: 48%;
  background: var(--sky);
  animation-duration: 16s;
}

/* Floating sparkle deco */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.deco-sp {
  position: absolute;
  font-size: 1.3rem;
  opacity: .55;
  animation: sparkle var(--t, 6s) ease-in-out infinite;
}

.ds1 {
  top: 8%;
  left: 5%;
  --t: 7s;
  color: var(--pink);
}

.ds2 {
  top: 12%;
  right: 24%;
  --t: 5s;
  color: var(--pink-m);
}

.ds3 {
  top: 45%;
  left: 3%;
  --t: 9s;
  color: var(--pink-d);
}

.ds4 {
  bottom: 18%;
  left: 18%;
  --t: 6.5s;
  color: var(--pink-l);
}

.ds5 {
  top: 22%;
  right: 6%;
  --t: 8s;
  color: var(--pink-d);
}

.ds6 {
  bottom: 10%;
  right: 4%;
  --t: 7.5s;
  color: var(--pink-m);
}

/* Hero grid - FEATURED ARTWORK LAYOUT */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 8rem;
  gap: 1.5rem;
}

.hero-left {
  flex: 0 1 auto;
  min-width: 300px;
  max-width: 450px;
}

.hero-right {
  flex: 1;
  min-width: 300px;
}

/* Hero LEFT */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInUp .8s var(--ease-s) both;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp .8s .1s var(--ease-s) both;
}

.hero-hi {
  font-family: var(--ff-logo);
  font-size: 1.1rem;
  color: var(--pink);
  opacity: .82;
  display: block;
  margin-bottom: .2rem;
  animation: fadeInUp .8s .15s var(--ease-s) both;
}

.hero-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(4rem, 8.5vw, 6.8rem);
  line-height: 0.95;
  color: var(--text); /* Set to Espresso */
  margin: 0 0 .6rem;
  width: fit-content;
  animation: fadeInUp .8s .25s var(--ease-s) both;
}

.hero-name-accent {
  color: var(--pink);
}

.hero-tag {
  font-size: .85rem;
  font-weight: 800;
  color: #E0A6B5; /* A slightly darker Peony for better contrast on light bg */
  text-transform: none;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: normal;
  margin: 0.5rem 0 1.5rem;
  animation: fadeInUp .8s .35s var(--ease-s) both;
}

.hero-bio {
  font-family: var(--ff-body);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--txt2);
  max-width: 540px;
  margin-bottom: 2.5rem;
  animation: fadeInUp .8s .45s var(--ease-s) both;
}

.hero-btns {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
  animation: fadeInUp .8s .55s var(--ease-s) both;
}

.hero-social-row {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  animation: fadeInUp .8s .65s var(--ease-s) both;
}

.hero-soc-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--pink-ll);
  border: 1.5px solid var(--border2);
  color: var(--pink);
  transition: all 0.3s var(--ease-b);
}

.hero-soc-pill svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.hero-soc-pill:hover {
  background: var(--g-btn);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--s2);
}

/* Hero RIGHT - FEATURED ARTWORK */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  height: 100%;
  padding: 0;
  flex: 2; /* Extremely large character area */
  animation: slideInFromLeft .8s .2s var(--ease-b) both;
}

/* ── Art Frame (outer glow wrapper) ── */
.hero-char-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1350px; /* Massive character for desktop */
  aspect-ratio: auto;
  margin-right: -5rem; /* Shift slightly to the right */
  animation: floatY 8s ease-in-out infinite;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end; /* Align to bottom for 'pop out' look */
}

/* spinning gradient ring behind frame */
.hero-char-wrap::before,
.hero-char-wrap::after {
  display: none !important;
}

/* the actual art frame */
.hero-art-frame {
  position: relative;
  z-index: 2;
  border-radius: 0;
  overflow: visible;
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: none;
  box-shadow: none;
  animation: none;
  background: transparent;
}

.hero-art-frame:hover {
  transform: scale(1.03);
}

.hero-art-img {
  width: auto;
  height: 95%; /* Make it fill the height */
  display: block;
  object-fit: contain;
  transition: transform .5s var(--ease-b);
}

.hero-art-frame:hover .hero-art-img {
  transform: scale(1.05);
}

/* floating deco badges around frame */
.hero-frame-badge {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(62, 39, 35, .35);
  border-radius: var(--rf);
  padding: .35rem .7rem;
  font-size: .75rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(62, 39, 35, .18);
}



.hero-frame-badge-tl {
  top: -14px;
  left: 12px;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero-frame-badge-br {
  bottom: -14px;
  right: 12px;
  animation: floatBadge2 5s ease-in-out infinite;
}

.hero-frame-badge-tr {
  top: 20px;
  right: -18px;
  animation: floatBadge 5.5s ease-in-out infinite;
}

/* corner sparkles */
.hero-frame-spark {
  position: absolute;
  z-index: 3;
  font-size: 1.1rem;
  animation: sparkle var(--st, 5s) ease-in-out infinite;
  pointer-events: none;
}

.hfs-1 {
  top: -22px;
  right: 20px;
  --st: 4.5s;
  color: var(--pink);
}

.hfs-2 {
  bottom: -20px;
  left: 16px;
  --st: 6s;
  color: var(--pink-m);
}

.hfs-3 {
  top: 50%;
  right: -26px;
  --st: 5s;
  color: var(--pink-l);
  transform: translateY(-50%);
}

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

@keyframes frameGlow {

  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(62, 39, 35, .3), 0 30px 80px rgba(62, 39, 35, .3), inset 0 1px 0 rgba(255, 255, 255, .95)
  }

  50% {
    box-shadow: 0 0 0 1px rgba(62, 39, 35, .4), 0 30px 80px rgba(62, 39, 35, .42), inset 0 1px 0 rgba(255, 255, 255, .95)
  }
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes floatBadge2 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px)
  }
}

/* ──  STATS STRIP (old - hidden) ── */
.home-stats-strip {
  display: none;
}

/* ── GALLERY PREVIEW ── */
.home-preview {
  position: relative;
  z-index: 1;
  background: var(--surf2);
  padding: 4rem 2.5rem 5rem;
}

.home-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.preview-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.preview-title {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}

.preview-title span {
  color: var(--pink);
}

.preview-all-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.2rem;
  border-radius: var(--rf);
  background: var(--pink-ll);
  border: 1.5px solid var(--border2);
  font-family: var(--ff-ui);
  font-size: .8rem;
  font-weight: 800;
  color: var(--pink);
  transition: all .3s var(--ease-b);
}

.preview-all-link:hover {
  background: var(--g-btn);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--s2);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.preview-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  box-shadow: var(--s2);
  transition: transform .38s var(--ease-b), box-shadow .38s;
  aspect-ratio: 1/1;
}

.preview-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--s3);
}

.preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s;
}

.preview-item:hover .preview-img {
  transform: scale(1.07);
}

.preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 24, 38, .85), transparent 55%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.1rem;
  gap: .2rem;
}

.preview-item:hover .preview-overlay {
  opacity: 1;
}

.preview-overlay-name {
  font-family: var(--ff-display);
  font-size: .95rem;
  color: #fff;
  font-weight: 600;
}

.preview-overlay-cat {
  font-size: .65rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.preview-card-foot {
  padding: .7rem .8rem;
  background: var(--surface);
}

/* ════════ HOME STATS CARDS ════════ */
.home-stats-section {
  display: none;
}

.home-stats-inner {
  display: none;
}

/* ════════ QUICK LINKS CARDS ════════ */
.home-quick-section {
  display: none;
}

.quick-cards-grid {
  display: none;
}

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

@keyframes frameGlow {

  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(62, 39, 35, .25), 0 20px 60px rgba(62, 39, 35, .22), inset 0 1px 0 rgba(255, 255, 255, .9)
  }

  50% {
    box-shadow: 0 0 0 1px rgba(62, 39, 35, .35), 0 20px 60px rgba(62, 39, 35, .32), inset 0 1px 0 rgba(255, 255, 255, .9)
  }
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes floatBadge2 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px)
  }
}

.preview-card-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .2rem;
}

/* ════════ FILTER TABS (horizontal pill row) ════════ */
.filter-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 1.25rem;
}

.filter-scroll::-webkit-scrollbar {
  display: none;
}

/* Sub-folder row — slightly indented & smaller */
.filter-scroll-sub {
  margin-top: -.6rem;
  margin-bottom: 1rem;
  padding-left: .5rem;
  border-left: 2.5px solid var(--pink-m);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .3s var(--ease-s), transform .3s var(--ease-s);
}

.filter-scroll-sub.visible-sub {
  opacity: 1;
  transform: none;
}

.filter-scroll-sub .filter-tabs {
  background: var(--surf2);
  border-color: var(--border);
  padding: .2rem .24rem;
}

.filter-scroll-sub .filter-tab {
  font-size: .76rem;
  padding: .34rem .85rem;
}


.filter-tabs {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--pink-ll);
  border: 1.5px solid var(--border2);
  border-radius: var(--rf);
  padding: .28rem .32rem;
  white-space: nowrap;
}

.filter-indicator {
  position: absolute;
  top: .28rem;
  bottom: .28rem;
  left: 0;
  border-radius: var(--rf);
  background: var(--pink-d);
  box-shadow: 0 4px 14px rgba(62, 39, 35, .35);
  transition: left .3s var(--ease-b), width .3s var(--ease-b);
  pointer-events: none;
  z-index: 0;
}

.filter-tab {
  position: relative;
  z-index: 1;
  padding: .42rem 1rem;
  border-radius: var(--rf);
  font-family: var(--ff-ui);
  font-size: .82rem;
  font-weight: 800;
  color: var(--txm);
  letter-spacing: .02em;
  transition: color .25s var(--ease-b), transform .2s var(--ease-b);
  white-space: nowrap;
}

.filter-tab:hover {
  color: var(--pink);
  transform: translateY(-1px);
}

.filter-tab.active {
  color: #fff;
}

/* ════════ GALLERY ════════ */
.gallery-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.gallery-sidebar {
  width: 185px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.sidebar-label {
  font-size: .68rem;
  font-weight: 800;
  color: var(--txm);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .65rem;
  padding: 0 .6rem;
}

.filter-tabs-v {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.filter-tab-v {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem .85rem;
  border-radius: var(--r-sm);
  font-family: var(--ff-ui);
  font-size: .84rem;
  font-weight: 700;
  color: var(--txt2);
  transition: all .25s var(--ease-b);
}

.filter-tab-v:hover {
  background: var(--pink-ll);
  color: var(--text);
}

.filter-tab-v.active {
  background: var(--pink-d);
  color: #fff;
  box-shadow: none;
}

.ftv-label {
  flex: 1;
}

.ftv-count {
  font-size: .7rem;
  font-weight: 800;
  background: var(--surf2);
  color: var(--txm);
  border-radius: var(--rf);
  padding: .1rem .4rem;
  margin-left: .3rem;
}

.filter-tab-v.active .ftv-count {
  background: rgba(255, 255, 255, .25);
  color: #fff;
}

.gallery-main {
  flex: 1;
  min-width: 0;
}

.gallery-meta {
  margin-bottom: 1rem;
}

.gallery-count {
  font-size: .78rem;
  font-weight: 700;
  color: var(--txm);
  letter-spacing: .05em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}

.gallery-card {
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  box-shadow: var(--s2);
  border: 1.5px solid var(--border);
  transition: transform .38s var(--ease-b), box-shadow .38s;
}

.gallery-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--s3);
}

.gallery-card.hidden {
  display: none;
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s;
}

.gallery-card:hover .card-img {
  transform: scale(1.07);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 24, 38, .88), transparent 55%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  padding: .9rem;
}

.gallery-card:hover .card-overlay {
  opacity: 1;
}

.card-title {
  font-family: var(--ff-display);
  font-size: .92rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .12rem;
}

.card-subtitle {
  font-size: .65rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.card-zoom {
  position: absolute;
  top: .7rem;
  right: .7rem;
  font-size: 1rem;
  opacity: 0;
  transition: opacity .35s;
}

.gallery-card:hover .card-zoom {
  opacity: 1;
}

.gallery-empty {
  text-align: center;
  padding: 5rem 2rem;
}

.gallery-empty-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--txt2);
  margin-bottom: .6rem;
}

.gallery-empty p {
  font-size: .88rem;
  color: var(--txm);
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}

.skel-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--s1);
}

.skel-img {
  background: linear-gradient(135deg, var(--pink-ll), var(--surf2));
  animation: shimmer 1.4s ease-in-out infinite alternate;
  aspect-ratio: 1/1;
}

.skel-body {
  padding: .8rem;
}

.skel-line {
  height: 12px;
  border-radius: 99px;
  background: var(--pink-ll);
  margin-bottom: .5rem;
  animation: shimmer 1.4s ease-in-out infinite alternate;
}

.skel-line.sm {
  width: 55%;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.cat-card {
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  box-shadow: var(--s2);
  border: 1.5px solid var(--border);
  transition: transform .38s var(--ease-b), box-shadow .38s;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s3);
}

.cat-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.cat-preview.single {
  display: block;
}

.cat-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cat-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1rem;
}

.cat-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.cat-right {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.cat-count {
  font-size: .7rem;
  font-weight: 800;
  color: var(--txm);
  letter-spacing: .04em;
}

.cat-arr {
  color: var(--pink);
  transition: transform .25s var(--ease-b);
}

.cat-card:hover .cat-arr {
  transform: translateX(4px);
}

/* ════════ PRICING ════════ */
.commission-banner {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(74, 222, 128, .08);
  border: 1.5px solid rgba(74, 222, 128, .4);
  border-radius: var(--rf);
  padding: .5rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--txt2);
  margin-bottom: 1.6rem;
}

.view-toggle-wrap {
  margin-bottom: 1.6rem;
}

.view-switch {
  display: inline-flex;
  background: var(--pink-ll);
  border: 1.5px solid var(--border2);
  border-radius: var(--rf);
  padding: .22rem;
  gap: .2rem;
}

.view-btn {
  padding: .38rem .95rem;
  border-radius: var(--rf);
  font-size: .8rem;
  font-weight: 800;
  color: var(--txm);
  transition: all .28s var(--ease-b);
}

.view-btn.active {
  background: var(--g-btn);
  color: #fff;
  box-shadow: 0 4px 14px rgba(62, 39, 35, .35);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
  margin-bottom: 2.5rem;
}

.price-card {
  position: relative;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1.5px solid var(--border);
  box-shadow: var(--s2);
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform .38s var(--ease-b), box-shadow .38s;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s3);
}

.price-card.recommended {
  border-color: var(--pink);
  border-width: 2px;
  box-shadow: var(--s2), 0 0 0 3px var(--pink-ll);
}

.price-card-image {
  width: 100%;
  height: 280px;
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(62, 39, 35, .05);
}

.price-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .3s var(--ease-s);
}

.price-card:hover .price-card-image img {
  transform: scale(1.05);
}

.rec-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--g-btn);
  color: #fff;
  border-radius: var(--rf);
  font-size: .68rem;
  font-weight: 800;
  padding: .22rem .85rem;
  letter-spacing: .06em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(62, 39, 35, .35);
}

.price-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .9rem;
}

.price-amount {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  margin-bottom: .2rem;
}

.price-from {
  font-size: .7rem;
  font-weight: 700;
  color: var(--txm);
  letter-spacing: .06em;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin: .8rem 0;
}

.price-desc {
  font-family: var(--ff-body);
  font-size: .86rem;
  color: var(--txt2);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.price-includes {
  display: flex;
  flex-direction: column;
  gap: .38rem;
  margin-bottom: 1.3rem;
  flex: 1;
  list-style: none;
}

.price-include-item {
  font-size: .82rem;
  color: var(--txt2);
  font-weight: 600;
  padding-left: 1rem;
  position: relative;
  line-height: 1.55;
}

.price-include-item::before {
  content: '♡';
  position: absolute;
  left: 0;
  top: 0;
  font-size: .7rem;
  color: var(--pink);
  opacity: .8;
}

.price-turnaround {
  font-size: .78rem;
  color: var(--txm);
  font-weight: 600;
  margin-bottom: .85rem;
}

.price-turnaround strong {
  color: var(--txt2);
}

.price-cta {
  width: 100%;
  padding: .72rem;
  border-radius: var(--rf);
  font-family: var(--ff-ui);
  font-size: .88rem;
  font-weight: 800;
  background: var(--pink-ll);
  color: var(--pink);
  border: 1.5px solid var(--pink-m);
  transition: all .3s var(--ease-b);
  letter-spacing: .03em;
}

.price-cta:hover {
  background: var(--g-btn);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(62, 39, 35, .35);
}

.pricing-note {
  font-size: .84rem;
  color: var(--txm);
  line-height: 1.75;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

/* ════════ TOS ════════ */
.tos-page-hero {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
}

.tos-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: .8rem;
}

.tos-hero-sub {
  font-size: .94rem;
  color: var(--txt2);
  line-height: 1.8;
  margin-bottom: .55rem;
}

.tos-updated {
  font-size: .7rem;
  font-weight: 700;
  color: var(--txm);
  letter-spacing: .08em;
}

.tos-do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: 1.6rem;
}

.tos-do-card {
  border-radius: var(--r-md);
  padding: 1.3rem;
  background: rgba(158, 202, 168, .1);
  border: 1.5px solid rgba(158, 202, 168, .4);
}

.tos-dont-card {
  border-radius: var(--r-md);
  padding: 1.3rem;
  background: rgba(62, 39, 35, .07);
  border: 1.5px solid rgba(62, 39, 35, .3);
}

.tos-do-title,
.tos-dont-title {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}

.tos-do-title {
  color: #4B8059;
}

.tos-dont-title {
  color: var(--pink-d);
}

.tos-list {
  display: flex;
  flex-direction: column;
  gap: .48rem;
  list-style: none;
}

.tos-list-item {
  font-size: .83rem;
  font-weight: 600;
  color: var(--txt2);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}

.tos-do-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: .58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
}

.tos-dont-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: .58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.tos-card {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  padding: 1.3rem 1.5rem;
  margin-bottom: .75rem;
}

.tos-card-header {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin-bottom: .7rem;
}

.tos-num {
  font-family: var(--ff-logo);
  font-size: .88rem;
  color: var(--pink);
  opacity: .75;
  flex-shrink: 0;
}

.tos-card-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.tos-card-content {
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--txt2);
  line-height: 1.8;
}

.tos-agree-wrap {
  margin: 1.6rem 0;
}

.tos-agree-card {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 2px solid var(--border2);
  padding: 2rem;
  text-align: center;
}

.tos-agree-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .6rem;
}

.tos-agree-sub {
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--txt2);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.tos-check-label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  cursor: pointer;
  margin-bottom: 1.2rem;
  font-size: .86rem;
  font-weight: 700;
  color: var(--txt2);
}

.tos-checkbox {
  display: none;
}

.tos-check-box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  flex-shrink: 0;
  border: 2px solid var(--border2);
  background: var(--surf2);
  transition: all .3s var(--ease-b);
  position: relative;
}

.tos-checkbox:checked+.tos-check-box {
  background: var(--pink);
  border-color: var(--pink);
}

.tos-checkbox:checked+.tos-check-box::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
}

.tos-req-btn {
  display: block;
  margin: 0 auto;
  padding: .82rem 2.2rem;
  border-radius: var(--rf);
  font-family: var(--ff-ui);
  font-size: .88rem;
  font-weight: 800;
  background: var(--border);
  color: var(--txm);
  letter-spacing: .04em;
  transition: all .35s var(--ease-b);
  cursor: not-allowed;
  opacity: .5;
}

.tos-req-btn.enabled {
  background: var(--g-btn);
  color: #fff;
  box-shadow: 0 8px 24px rgba(62, 39, 35, .38);
  cursor: pointer;
  opacity: 1;
}

.tos-req-btn.enabled:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(62, 39, 35, .5);
}

/* ════════ CONTACT ════════ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  min-height: 500px;
}

.contact-hero {
  text-align: left;
  padding: 0;
  margin-bottom: 2rem;
}

.contact-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: .8rem;
}

.contact-hero-sub {
  font-size: .95rem;
  color: var(--txt2);
  line-height: 1.8;
  margin-bottom: .55rem;
}

.contact-label {
  text-align: left;
  margin-bottom: 1rem;
}

.contact-img-frame {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 420px;
  max-height: 500px;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, .8);
  box-shadow: 0 30px 80px rgba(62, 39, 35, .3), inset 0 1px 0 rgba(255, 255, 255, .95);
  animation: frameGlow 4s ease-in-out infinite;
  transition: transform .4s var(--ease-b);
  background: var(--pink-ll);
}

.contact-img-frame:hover {
  transform: scale(1.03);
}

.contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-b);
}

.contact-img-frame:hover .contact-img {
  transform: scale(1.05);
}

@media (max-width:980px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 2rem;
  }

  .contact-right {
    min-height: 420px;
  }

  .contact-img-frame {
    max-height: 420px;
  }
}

@media (max-width:768px) {
  .contact-wrapper {
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .contact-right {
    min-height: 380px;
  }

  .contact-hero-title {
    font-size: 1.8rem;
  }

  .contact-hero.reveal {
    animation: slideInFromTop .7s .15s var(--ease-b) both !important;
  }

  .contact-label.reveal {
    animation: slideInFromTop .7s .3s var(--ease-b) both !important;
  }

  .social-grid.reveal {
    animation: slideInFromTop .7s .45s var(--ease-b) both !important;
  }

  .contact-img-frame.reveal {
    animation: slideInFromTop .7s .6s var(--ease-b) both !important;
  }
}

@media (max-width:620px) {
  .contact-hero-title {
    font-size: 1.6rem;
  }

  .contact-hero-sub {
    font-size: .88rem;
  }

  .contact-right {
    min-height: 340px;
  }

  .contact-img-frame {
    max-height: 380px;
  }

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

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.soc-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
  box-shadow: var(--s1);
  cursor: pointer;
  transition: transform .35s var(--ease-b), box-shadow .35s, border-color .35s;
}

.soc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--s2);
  border-color: var(--pink-m);
}

.soc-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-ll);
  color: var(--pink-d);
  transition: all 0.3s var(--ease-b);
}

.soc-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.soc-card:hover .soc-icon {
  background: var(--pink);
  color: #fff;
  transform: scale(1.1);
}

.soc-text {
  flex: 1;
}

.soc-name {
  font-size: .9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .1rem;
}

.soc-handle {
  font-family: var(--ff-body);
  font-size: .78rem;
  color: var(--txm);
}

.soc-arr {
  color: var(--pink);
  font-size: 1rem;
  opacity: .55;
  transition: transform .3s var(--ease-b), opacity .3s;
}

.soc-card:hover .soc-arr {
  transform: translateX(5px);
  opacity: 1;
}

/* ════════ MODAL ════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(80, 20, 40, .88);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

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

.modal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .45);
  overflow: hidden;
  max-width: 740px;
  width: 100%;
  max-height: 92vh;
  animation: slideUp .38s var(--ease-b);
}

.modal-img-box {
  position: relative;
  background: var(--pink-ll);
  flex: 1;
  min-height: 240px;
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 62vh;
  display: block;
  transition: opacity .3s;
}

.modal-img.loading {
  opacity: .22;
}

.modal-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-ll), var(--surf2));
  animation: shimmer 1.4s ease-in-out infinite alternate;
  display: none;
}

.modal-skeleton.show {
  display: block;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.2rem;
  border-top: 1.5px solid var(--border);
  gap: 1rem;
}

.modal-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .1rem;
}

.modal-cat {
  font-size: .68rem;
  font-weight: 800;
  color: var(--txm);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.modal-open-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--pink-ll);
  color: var(--pink-d);
  transition: all .3s var(--ease-b);
}

.modal-open-btn:hover {
  background: var(--pink);
  color: #fff;
  transform: scale(1.1);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  color: var(--txt2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--s2);
  transition: all .3s var(--ease-b);
  z-index: 2;
}



.modal-prev {
  left: .75rem;
}

.modal-next {
  right: .75rem;
}

.modal-nav:hover:not(:disabled) {
  background: var(--pink);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.modal-nav:disabled {
  opacity: .28;
  cursor: not-allowed;
}

.modal-close {
  position: absolute;
  top: .65rem;
  right: .65rem;
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  color: var(--txt2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--s1);
  transition: all .25s var(--ease-b);
}



.modal-close:hover {
  background: var(--pink);
  color: #fff;
  transform: scale(1.1) rotate(90deg);
}

/* ════════ RESPONSIVE ════════ */
@media (max-width:980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem 2rem;
    min-height: auto;
  }

  .hero-right {
    min-height: 380px;
    max-height: 420px;
    margin: 0 auto;
    width: 100%;
    max-width: 360px;
  }

  .hero-char-wrap {
    max-width: 360px;
    height: 360px;
  }
}

@media (max-width:768px) {

  .nav-links,
  .nav-cta-btn {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-right {
    margin-left: auto;
  }

  .container,
  .container-sm {
    padding: 0 1.5rem;
  }

  .gallery-layout {
    flex-direction: column;
  }

  .gallery-sidebar {
    width: 100%;
    position: static;
  }

  .filter-tabs-v {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .filter-tab-v {
    width: auto;
    border-radius: var(--rf);
    box-shadow: none;
    padding: .4rem .75rem;
  }

  .filter-tab-v.active {
    background: var(--pink-d);
    color: #fff;
    box-shadow: none;
  }

  .ftv-count {
    display: none;
  }

  .tos-do-dont {
    grid-template-columns: 1fr;
  }

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

  .hero {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1.5rem 1.2rem;
    margin-top: 0;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    height: calc(100svh - var(--nav-h));
    min-height: auto;
    overflow: hidden;
  }

  .hero-right {
    min-height: auto;
    height: auto;
    display: flex;
    justify-content: center;
  }

  .hero-char-wrap {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: auto;
    margin: 0 auto;
  }
}

@keyframes loadingPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@media (max-width:620px) {
  :root {
    --nav-h: 60px;
  }

  .hero {
    flex-direction: column-reverse; /* Text first, then image below - or column for image top */
    /* Actually Column usually has Text then Image stack */
    padding: 1.5rem 1.25rem;
    margin-top: 0;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: calc(100svh - var(--nav-h));
    overflow: visible;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  }

  .hero-name {
    font-size: 2.3rem;
    text-align: center;
  }

  .hero-tag {
    margin: 0.4rem 0 0.8rem;
  }

  .hero-bio {
    font-size: .88rem;
    margin-bottom: 0.8rem;
    text-align: center;
  }

  .hero-btns {
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1rem;
  }

  .hero-right {
    min-height: auto;
    height: auto;
    justify-content: center; /* Center on mobile */
    padding: 1rem 0;
  }

  .hero-char-wrap {
    max-width: 280px;
    height: auto;
    aspect-ratio: auto;
    margin: 0 auto; /* Remove desktop negative margin */
    justify-content: center;
    align-items: center;
  }

  .hero-soc-pill {
    width: 34px;
    height: 34px;
    font-size: .7rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .social-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════ QUEUE CHECK PAGE ════════ */
.queue-hero {
  text-align: center;
  padding: 2rem 0 1.2rem;
  margin-bottom: 1.5rem;
}

.queue-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: .8rem;
}

.queue-hero-sub {
  font-size: .95rem;
  color: var(--txt2);
  line-height: 1.8;
}

.queue-search-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.queue-search-form {
  width: 100%;
  max-width: 500px;
}

.queue-input-group {
  display: flex;
  gap: .8rem;
  align-items: stretch;
}

.queue-code-input {
  flex: 1;
  padding: 1rem 1.2rem;
  border-radius: var(--r-md);
  border: 2px solid var(--border2);
  background: var(--surface);
  color: var(--text);
  font-family: var(--ff-ui);
  font-size: .95rem;
  transition: border-color .3s, box-shadow .3s;
}

.queue-code-input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(62, 39, 35, .2);
}

.queue-search-btn {
  padding: 1rem 2rem;
  border-radius: var(--r-md);
  background: var(--g-btn);
  color: white;
  font-weight: 600;
  transition: transform .3s, box-shadow .3s;
}

.queue-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--s2);
}

.queue-result-box {
  min-height: 200px;
  margin-bottom: 2rem;
}

.queue-card {
  background: var(--g-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--s1);
}

.queue-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.queue-card-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.queue-status-badge {
  padding: .5rem 1.2rem;
  border-radius: var(--rf);
  color: white;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.queue-card-desc {
  color: var(--txt2);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: .95rem;
}

.queue-progress {
  margin-bottom: 1.5rem;
}

.queue-progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: .5rem;
  font-weight: 600;
  font-size: .9rem;
}

.queue-progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(62, 39, 35, .08);
  border-radius: 99px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, .05);
}

.queue-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--pink-m));
  transition: width .6s var(--ease-s);
  border-radius: 99px;
}

.queue-due {
  padding: 1rem;
  background: rgba(244, 201, 214, .12);
  border-radius: var(--r-md);
  border-left: 4px solid var(--pink);
}

.queue-due-label {
  font-weight: 600;
  font-size: .9rem;
  color: var(--txt2);
}

.queue-due-date {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: .3rem;
}

.queue-error {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--txt2);
}

.queue-error-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.queue-error-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: .5rem;
}

.queue-error-text {
  font-size: .95rem;
}

.queue-sample-wrap {
  text-align: center;
}

.queue-sample-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--txt2);
  margin-bottom: 1rem;
}

.queue-sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.queue-sample-code {
  padding: .8rem 1rem;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-weight: 600;
  font-family: var(--ff-ui);
  cursor: pointer;
  transition: all .3s;
}

.queue-sample-code:hover {
  border-color: var(--pink);
  background: var(--pink-ll);
  transform: scale(1.05);
}

/* Queue Item Cards from Google Sheet */
.queue-sample-grid {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* Loading State */
.queue-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  color: var(--txm);
}

.loading-spinner {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border: 4px solid var(--border);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Table */
.queue-data-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--s2);
  animation: slideUp .6s var(--ease-s) both;
}

.queue-data-table thead {
  background: var(--g-btn);
  color: #fff;
}

.queue-data-table th {
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
}

.queue-data-table tbody tr {
  border-bottom: 2px solid var(--border);
  transition: background .3s;
  animation: slideUp .5s var(--ease-s) both;
}

.queue-data-table tbody tr:hover {
  background: rgba(62, 39, 35, .05);
}

.queue-data-table tbody tr:last-child {
  border-bottom: none;
}

.queue-data-table td {
  padding: 1rem 1.5rem;
  font-size: .9rem;
  color: var(--txt2);
}

.queue-cell-code {
  font-weight: 700;
  color: var(--pink);
  font-family: var(--ff-ui);
  min-width: 120px;
}

.queue-cell-detail {
  color: var(--text);
  font-weight: 500;
  max-width: 250px;
}



.queue-cell-status {}

.status-badge {
  display: inline-block;
  padding: .4rem .9rem;
  border-radius: var(--r-sm);
  font-size: .8rem;
  font-weight: 700;
  background: var(--pink-ll);
  color: var(--pink);
  text-transform: capitalize;
}

.queue-cell-payment {
  font-weight: 600;
  color: var(--text);
}

@media (max-width:768px) {

  .queue-data-table th,
  .queue-data-table td {
    padding: .8rem 1rem;
    font-size: .85rem;
  }

  .queue-cell-detail {
    max-width: 150px;
  }
}

@media (max-width:768px) {
  .queue-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

/* ════════════════ POLISH & MICRO-INTERACTIONS ════════════════ */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid var(--pink);
  color: var(--pink-d);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--s2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .4s var(--ease-b);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--pink);
  color: white;
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--s3);
}

/* Sparkles Particle */
.sparkle-particle {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1200;
  width: 14px;
  height: 14px;
  fill: var(--pink);
  filter: drop-shadow(0 0 4px var(--pink-l));
  animation: sparkle-float 0.8s ease-out forwards;
}

@keyframes sparkle-float {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
    transform: translate(var(--dx), var(--dy)) scale(1) rotate(45deg);
  }
  100% {
    transform: translate(calc(var(--dx) * 1.5), calc(var(--dy) * 1.5)) scale(0) rotate(90deg);
    opacity: 0;
  }
}

.gallery-card:hover .card-img-wrap {
  transform: scale(1.02);
}

.card-img-wrap {
  transition: transform .4s var(--ease-b);
}