/* ============================================
   藝洋視覺設計工作室 — Premium Design System
   Inspired by mentry.dev
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  color-scheme: dark;
  --bg: #0f0d10;
  --bg-soft: #171215;
  --panel: #21191c;
  --panel-2: #181f21;
  --text: #fff8ef;
  --muted: #cabcb0;
  --line: rgba(255, 248, 239, 0.12);
  --coral: #f1917d;
  --coral-dim: rgba(241, 145, 125, 0.15);
  --cyan: #7ad7cf;
  --lime: #f2c76f;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --radius: 0px;
  --font-heading: 'Fraunces', 'Noto Sans TC', serif;
  --font-body: 'Noto Sans TC', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Grotesk', 'JetBrains Mono', monospace;
  --container: 1200px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--coral);
  color: #160f10;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
/* Make <picture> wrappers transparent to layout so CSS targeting <img> inside
   containers (e.g. .avatar__core img, .work__img img) continues to work. */
picture { display: contents; }
ul, ol { list-style: none; }
h1, h2, h3, h4, p { margin-top: 0; }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 999;
  padding: 12px 24px;
  background: var(--coral);
  color: #160f10;
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(280px, 60vw, 600px);
  height: clamp(280px, 60vw, 600px);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 145, 125, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  will-change: transform;
}
body:hover .cursor-glow { opacity: 1; }
.cursor-glow.is-touch-active { opacity: 1; }

/* ============================================
   TOUCH RIPPLE (mobile tap effect)
   ============================================ */
.touch-ripple {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 145, 125, 0.55) 0%, rgba(241, 145, 125, 0.18) 40%, transparent 70%);
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0.95;
  animation: touchRippleExpand 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes touchRippleExpand {
  0% {
    transform: translate(-50%, -50%) scale(0.4);
    opacity: 0.95;
  }
  100% {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  border-color: var(--line);
  background: rgba(15, 13, 16, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px clamp(18px, 4vw, 56px);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  z-index: 101;
}

.nav__logo-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(241, 145, 125, 0.62);
  background: var(--coral-dim);
  color: var(--coral);
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 900;
}

.nav__logo-text {
  font-size: 0.95rem;
}

.nav__menu {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  font-size: 0.94rem;
  color: rgba(255, 248, 239, 0.76);
}

.nav__menu a {
  position: relative;
  transition: color 0.2s;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}
.nav__menu a:hover { color: var(--text); }
.nav__menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Nav Active Link */
.nav__menu a.is-active {
  color: var(--coral);
}
.nav__menu a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid rgba(241, 145, 125, 0.4);
  background: var(--coral-dim);
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.25s var(--ease);
}
.nav__cta:hover {
  background: var(--coral);
  color: #160f10;
  transform: translateY(-2px);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 248, 239, 0.2);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  border-color: var(--coral);
  background: var(--coral);
  color: #160f10;
}
.btn--primary:hover {
  background: #e87e68;
  box-shadow: 0 8px 30px rgba(241, 145, 125, 0.3);
}

.btn--ghost {
  background: rgba(255, 248, 239, 0.06);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 248, 239, 0.12);
  border-color: rgba(255, 248, 239, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Dynamic Background */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(241, 145, 125, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(122, 215, 207, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(242, 199, 111, 0.06) 0%, transparent 50%);
  animation: atmospherePulse 8s ease-in-out infinite alternate;
}

@keyframes atmospherePulse {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 248, 239, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 239, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(241, 145, 125, 0.5), transparent),
    radial-gradient(1px 1px at 25% 60%, rgba(122, 215, 207, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 40% 15%, rgba(242, 199, 111, 0.5), transparent),
    radial-gradient(1px 1px at 55% 75%, rgba(241, 145, 125, 0.3), transparent),
    radial-gradient(2px 2px at 70% 35%, rgba(122, 215, 207, 0.4), transparent),
    radial-gradient(1px 1px at 85% 55%, rgba(242, 199, 111, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 15% 80%, rgba(241, 145, 125, 0.4), transparent),
    radial-gradient(1px 1px at 60% 10%, rgba(122, 215, 207, 0.3), transparent),
    radial-gradient(1px 1px at 90% 80%, rgba(241, 145, 125, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 35% 45%, rgba(242, 199, 111, 0.4), transparent);
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-30px); }
}

.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__cols {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* Hero Text */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.6);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease) both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease) 0.1s both;
}

.hero__line {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero__line--gradient {
  background: linear-gradient(135deg, var(--coral), var(--lime), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__line--sub {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 500;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

.hero__quote {
  position: relative;
  margin: 0 0 24px;
  padding-left: 24px;
  border-left: 2px solid var(--coral);
  animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

.hero__quote-mark {
  position: absolute;
  top: -8px;
  left: -4px;
  font-size: 2.5rem;
  color: var(--coral);
  opacity: 0.3;
  font-family: var(--font-heading);
  line-height: 1;
}

.hero__quote p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}
.hero__quote em {
  color: var(--text);
  font-style: normal;
  font-weight: 700;
}

.hero__desc {
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.8s var(--ease) 0.4s both;
}

/* Avatar / Logo Ring */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

.avatar {
  position: relative;
  width: 320px;
  height: 320px;
}

.avatar__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.avatar__ring--1 {
  inset: 0;
  border-color: rgba(241, 145, 125, 0.2);
  animation: ringRotate 20s linear infinite;
}
.avatar__ring--1::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
}

.avatar__ring--2 {
  inset: 20px;
  border-color: rgba(122, 215, 207, 0.15);
  animation: ringRotate 15s linear infinite reverse;
}
.avatar__ring--2::before {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 30%;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.avatar__core {
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(241, 145, 125, 0.3);
  background: rgba(33, 25, 28, 0.5);
  display: grid;
  place-items: center;
}

.avatar__logo {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(241, 145, 125, 0.2));
}

/* Floating Tags */
.avatar__tag {
  position: absolute;
  padding: 6px 14px;
  background: rgba(33, 25, 28, 0.8);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  animation: tagFloat 6s ease-in-out infinite;
}

.avatar__tag--1 { top: 15%; left: -30%; animation-delay: 0s; }
.avatar__tag--2 { top: 45%; right: -35%; animation-delay: 1s; }
.avatar__tag--3 { bottom: 25%; left: -25%; animation-delay: 2s; }
.avatar__tag--4 { top: 5%; right: -20%; animation-delay: 0.5s; }
.avatar__tag--5 { bottom: 5%; right: -15%; animation-delay: 1.5s; }
.avatar__tag--6 { bottom: 45%; left: -35%; animation-delay: 2.5s; }

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

/* Hero Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 60px;
  border: 1px solid var(--line);
  background: var(--line);
  animation: fadeInUp 0.8s var(--ease) 0.5s both;
}

.stat {
  padding: 24px 20px;
  background: rgba(33, 25, 28, 0.6);
  backdrop-filter: blur(10px);
  text-align: center;
}

.stat__num {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.stat--accent .stat__num { color: var(--coral); }

.stat__label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 248, 239, 0.3);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--coral);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(23, 18, 21, 0.8);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__track span {
  padding: 0 24px;
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: rgba(255, 248, 239, 0.6);
  white-space: nowrap;
}

.marquee__track span::before {
  content: '✦';
  color: var(--coral);
  margin-right: 24px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(23, 18, 21, 1) 0%, var(--bg) 100%);
}

.section__head {
  margin-bottom: 56px;
  max-width: 800px;
}

.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section__kicker {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about__text p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-bottom: 20px;
}

.about__lead {
  font-size: clamp(1.15rem, 2vw, 1.4rem) !important;
  color: var(--text) !important;
  font-weight: 500;
}

.about__pull {
  position: relative;
  padding: 20px 24px;
  margin: 28px 0;
  border-left: 3px solid var(--coral);
  background: rgba(241, 145, 125, 0.06);
}
.about__pull em {
  font-style: normal;
  color: var(--text);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.7;
}

.about__card {
  position: sticky;
  top: 100px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(33, 25, 28, 0.9), rgba(24, 31, 33, 0.9));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.about__card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.about__card-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.about__card-value {
  font-weight: 600;
  font-size: 0.95rem;
  text-align: right;
}

.about__card-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0;
}

.about__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  color: var(--coral);
  font-size: 0.95rem;
  transition: all 0.25s var(--ease);
}
.about__card-cta:hover {
  gap: 12px;
}

/* ============================================
   MANIFESTO
   ============================================ */
.section--manifesto {
  position: relative;
  overflow: hidden;
}

.manifesto__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(241, 145, 125, 0.06) 0%, transparent 70%);
}

.manifesto {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  counter-reset: manifesto;
}

.manifesto__item {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(33, 25, 28, 0.6), rgba(24, 31, 33, 0.6));
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.manifesto__item:hover {
  border-color: rgba(241, 145, 125, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.manifesto__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.manifesto__head {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.manifesto__head em {
  font-style: normal;
  background: linear-gradient(135deg, var(--coral), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.manifesto__body {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 0;
}
.manifesto__body em {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service {
  position: relative;
  padding: clamp(28px, 4vw, 38px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.service:hover {
  border-color: rgba(241, 145, 125, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service--featured {
  background:
    linear-gradient(135deg, rgba(241, 145, 125, 0.1), rgba(242, 199, 111, 0.06)),
    linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
}

.service__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(241, 145, 125, 0.08);
  color: var(--coral);
}
.service__icon svg {
  width: 22px;
  height: 22px;
}

.service__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.service__desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.service__desc em {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
}

.service__bullets {
  margin-bottom: 20px;
  flex: 1;
}
.service__bullets li {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 4px 0;
}

.service__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.25s var(--ease);
  margin-top: auto;
}
.service__cta:hover { gap: 14px; }

/* ============================================
   SKILLS / TOOLS
   ============================================ */
.skills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.skill-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  transition: all 0.35s var(--ease);
}

.skill-card:hover {
  border-color: rgba(241, 145, 125, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.skill-card--featured {
  background:
    linear-gradient(135deg, rgba(241, 145, 125, 0.08), rgba(242, 199, 111, 0.04)),
    linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  border-color: rgba(241, 145, 125, 0.2);
}

.skill-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(241, 145, 125, 0.08);
  color: var(--coral);
  margin-bottom: 20px;
}
.skill-card__icon svg {
  width: 22px;
  height: 22px;
}

.skill-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 6px;
}

.skill-card p {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.skill-card__list li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 248, 239, 0.06);
  transition: color 0.2s;
}
.skill-card__list li:last-child {
  border-bottom: none;
}
.skill-card:hover .skill-card__list li {
  color: var(--text);
}

/* ============================================
   EXPERIENCE TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    var(--coral) 0%,
    rgba(241, 145, 125, 0.3) 50%,
    rgba(255, 248, 239, 0.08) 100%
  );
}

.timeline__item {
  position: relative;
  padding-bottom: 48px;
}
.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid var(--coral);
  background: var(--bg);
  z-index: 1;
  transition: all 0.3s var(--ease);
}

.timeline__item:first-child .timeline__dot {
  background: var(--coral);
  box-shadow: 0 0 16px rgba(241, 145, 125, 0.5);
}

.timeline__content {
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(33, 25, 28, 0.8), rgba(24, 31, 33, 0.8));
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.timeline__content:hover {
  border-color: rgba(241, 145, 125, 0.25);
  transform: translateX(6px);
}

.timeline__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.timeline__date {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.05em;
}

.timeline__tag {
  display: inline-block;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--muted);
}
.timeline__tag--active {
  border-color: rgba(122, 215, 207, 0.5);
  color: var(--cyan);
  background: rgba(122, 215, 207, 0.08);
}

.timeline__role {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.timeline__points li {
  position: relative;
  padding: 5px 0 5px 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.timeline__points li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-size: 0.85rem;
}
.timeline__points li strong {
  color: var(--text);
}

/* ============================================
   COURSE
   ============================================ */
.course {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: clamp(28px, 5vw, 60px);
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.course__info h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.course__info p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.course__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.course__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}
.course__features svg { color: var(--cyan); flex-shrink: 0; }

.course__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(242, 199, 111, 0.35);
  background: rgba(15, 13, 16, 0.7);
  text-align: center;
}

.course__card-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.course__card-price {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--lime);
  line-height: 1;
}

/* ============================================
   WORKS
   ============================================ */
.works {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.work {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.work:hover {
  border-color: rgba(241, 145, 125, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.work__img {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.work__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.work:hover .work__img img {
  transform: scale(1.05);
}

.work__info {
  padding: clamp(18px, 3vw, 28px);
}

.work__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.work__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.work__desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.works__more {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
}

.testimonial:hover {
  border-color: rgba(241, 145, 125, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial__stars {
  font-size: 1rem;
  color: var(--lime);
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial__text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
  position: relative;
  padding-left: 16px;
  border-left: 2px solid rgba(241, 145, 125, 0.2);
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial__author strong {
  font-size: 0.95rem;
}
.testimonial__author span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
}

/* ============================================
   PACKAGES
   ============================================ */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  transition: all 0.35s var(--ease);
}

.package:hover {
  border-color: rgba(241, 145, 125, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.package--featured {
  background:
    linear-gradient(135deg, rgba(241, 145, 125, 0.12), rgba(242, 199, 111, 0.06)),
    linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  border-color: rgba(241, 145, 125, 0.25);
}

.package__type {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.package h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.package p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex: 1;
}

.package strong {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--lime);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--line);
  margin-bottom: 12px;
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  transition: all 0.35s var(--ease);
}

.faq__item:hover {
  border-color: rgba(241, 145, 125, 0.25);
}

.faq__item[open] {
  border-color: rgba(241, 145, 125, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.faq__q {
  padding: clamp(18px, 3vw, 24px);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
  user-select: none;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}

.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
}

.faq__q:hover {
  color: var(--coral);
}

.faq__a {
  padding: 0 clamp(18px, 3vw, 24px) clamp(18px, 3vw, 24px);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  border-top: 1px solid var(--line);
  animation: faqSlideDown 0.3s var(--ease);
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact__info h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.contact__info p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.contact__info .btn {
  margin-bottom: 0;
}

.contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact__social {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.6);
  color: var(--text);
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.contact__social svg {
  width: 22px;
  height: 22px;
}

.contact__social:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.contact__social--ig:hover {
  background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  border-color: transparent;
  color: #fff;
}

.contact__social--fb:hover {
  background: #1877f2;
  border-color: transparent;
  color: #fff;
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.contact__links a {
  padding: 10px 16px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}
.contact__links a:hover {
  border-color: var(--coral);
  color: var(--text);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer__copy {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 145, 125, 0.4);
  background: rgba(33, 25, 28, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--coral);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.35s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--coral);
  color: #160f10;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(241, 145, 125, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   PROCESS
   ============================================ */
.section--process {
  position: relative;
  overflow: hidden;
}

.process__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(122, 215, 207, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(241, 145, 125, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.process::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(241, 145, 125, 0.4) 10%,
    rgba(122, 215, 207, 0.3) 50%,
    rgba(242, 199, 111, 0.4) 90%,
    transparent
  );
  z-index: -1;
}

.process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.92), rgba(24, 31, 33, 0.92));
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.process__step:hover {
  border-color: rgba(241, 145, 125, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.process__step--featured {
  background:
    linear-gradient(135deg, rgba(241, 145, 125, 0.12), rgba(242, 199, 111, 0.06)),
    linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  border-color: rgba(241, 145, 125, 0.3);
}

.process__step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}

.process__step-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 145, 125, 0.3);
  background: rgba(241, 145, 125, 0.1);
  color: var(--coral);
  margin-bottom: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}

.process__step-icon svg {
  width: 24px;
  height: 24px;
}

.process__step--featured .process__step-icon {
  background: var(--coral);
  color: #160f10;
  box-shadow: 0 0 24px rgba(241, 145, 125, 0.4);
}

.process__step-title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.process__step-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}
.process__step-desc em {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
}

.process__step-time {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cyan);
  border: 1px solid rgba(122, 215, 207, 0.3);
  background: rgba(122, 215, 207, 0.06);
  margin-top: auto;
}

.process__cta {
  margin-top: 56px;
  text-align: center;
}

/* ============================================
   FAQ TABS
   ============================================ */
.faq-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.faq-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.5);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}

.faq-tab {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.faq-tab:hover {
  color: var(--text);
  background: rgba(255, 248, 239, 0.04);
}

.faq-tab.is-active {
  background: linear-gradient(135deg, rgba(241, 145, 125, 0.18), rgba(242, 199, 111, 0.1));
  border-color: rgba(241, 145, 125, 0.35);
  color: var(--text);
  box-shadow: 0 6px 20px rgba(241, 145, 125, 0.15);
}

.faq-tab__icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--coral);
  flex-shrink: 0;
}
.faq-tab__icon svg {
  width: 18px;
  height: 18px;
}

.faq-tab.is-active .faq-tab__icon {
  color: var(--coral);
}

.faq-tab__label {
  font-weight: 700;
}

.faq-tab__count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255, 248, 239, 0.06);
  border: 1px solid var(--line);
}

.faq-tab.is-active .faq-tab__count {
  color: var(--coral);
  background: rgba(241, 145, 125, 0.1);
  border-color: rgba(241, 145, 125, 0.3);
}

.faq-panel {
  animation: faqPanelFade 0.35s var(--ease);
}

.faq-panel[hidden] {
  display: none !important;
}

@keyframes faqPanelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   WORKS — OVERLAY & BUTTON RESET
   ============================================ */
.work {
  /* Reset for button */
  font: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  padding: 0;
  color: inherit;
  display: block;
}

.work__img {
  position: relative;
}

.work__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(15, 13, 16, 0.15) 0%, rgba(15, 13, 16, 0.75) 100%);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.work:hover .work__overlay,
.work:focus-visible .work__overlay {
  opacity: 1;
}

.work__overlay-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--coral);
  background: rgba(241, 145, 125, 0.2);
  color: var(--coral);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transform: scale(0.85);
  transition: transform 0.35s var(--ease);
}

.work:hover .work__overlay-icon,
.work:focus-visible .work__overlay-icon {
  transform: scale(1);
}

.work:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 6, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.8);
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  transition: all 0.25s var(--ease);
}
.lightbox__close:hover {
  background: var(--coral);
  color: #160f10;
  border-color: var(--coral);
  transform: rotate(90deg);
}

.lightbox__content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  transform: scale(0.96);
  transition: transform 0.35s var(--ease);
}

.lightbox.is-open .lightbox__content {
  transform: scale(1);
}

.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.lightbox__img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 70vh;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.3);
}

.lightbox__caption {
  padding: clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--line);
}

.lightbox__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lightbox__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.lightbox__desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

body.lightbox-open {
  overflow: hidden;
}

/* ============================================
   SUB-PAGE HERO
   ============================================ */
.sub-hero {
  position: relative;
  padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 10vw, 100px);
  overflow: hidden;
}

.sub-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.sub-hero__inner--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sub-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.5);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.sub-hero__back:hover {
  color: var(--coral);
  border-color: rgba(241, 145, 125, 0.4);
  transform: translateX(-4px);
}

.sub-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.6);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.sub-hero__inner--center .sub-hero__back {
  margin-left: auto;
  margin-right: auto;
}

.sub-hero__title {
  margin-bottom: 24px;
}

.sub-hero__desc {
  max-width: 700px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.sub-hero__desc--center {
  margin-left: auto;
  margin-right: auto;
}

.sub-hero__desc strong {
  color: var(--text);
}

.container--narrow {
  max-width: 880px;
}

/* ============================================
   BUTTON LARGE
   ============================================ */
.btn--large {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ============================================
   COURSE PAGE
   ============================================ */
.course-price {
  display: inline-block;
  padding: 18px 28px;
  margin: 0 0 32px;
  border: 1px solid rgba(242, 199, 111, 0.4);
  background: linear-gradient(135deg, rgba(242, 199, 111, 0.12), rgba(241, 145, 125, 0.08));
}

.course-price__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.course-price__row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.course-price__old {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(241, 145, 125, 0.6);
}

.course-price__new {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  color: var(--lime);
  line-height: 1;
}

.course-price__save {
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral);
  background: rgba(241, 145, 125, 0.15);
  border: 1px solid rgba(241, 145, 125, 0.4);
}

.course-intro {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.course-intro__text p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin-bottom: 20px;
}

.course-intro__lead {
  font-size: clamp(1.2rem, 2vw, 1.5rem) !important;
  color: var(--text) !important;
  font-weight: 600;
}

.course-intro__text strong { color: var(--text); }
.course-intro__text em {
  font-style: normal;
  color: var(--coral);
  font-weight: 600;
}

.course-intro__benefits {
  position: sticky;
  top: 100px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(33, 25, 28, 0.9), rgba(24, 31, 33, 0.9));
  backdrop-filter: blur(10px);
}

.course-intro__benefits h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--coral);
}

.course-intro__benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.course-intro__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.course-intro__benefits svg {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Audience */
.audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.audience__card {
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.92), rgba(24, 31, 33, 0.92));
  text-align: center;
  transition: all 0.35s var(--ease);
}

.audience__card:hover {
  border-color: rgba(241, 145, 125, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.audience__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 145, 125, 0.3);
  background: rgba(241, 145, 125, 0.08);
  color: var(--coral);
  margin: 0 auto 16px;
  border-radius: 50%;
}
.audience__icon svg {
  width: 24px;
  height: 24px;
}

.audience__card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.audience__card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Curriculum */
.curriculum {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: ch;
}

.curriculum__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(33, 25, 28, 0.9), rgba(24, 31, 33, 0.9));
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.curriculum__item:hover {
  border-color: rgba(241, 145, 125, 0.3);
  transform: translateX(4px);
}

.curriculum__item--featured {
  border-color: rgba(241, 145, 125, 0.3);
  background:
    linear-gradient(135deg, rgba(241, 145, 125, 0.08), rgba(242, 199, 111, 0.04)),
    linear-gradient(135deg, rgba(33, 25, 28, 0.92), rgba(24, 31, 33, 0.92));
}

.curriculum__num {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  text-align: center;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.curriculum__item--featured .curriculum__num {
  color: var(--lime);
}

.curriculum__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.curriculum__desc {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.curriculum__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.curriculum__points li {
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.04);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.92), rgba(24, 31, 33, 0.92));
  text-align: center;
  transition: all 0.35s var(--ease);
}
.feature:hover {
  border-color: rgba(241, 145, 125, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(241, 145, 125, 0.08);
  color: var(--coral);
  margin: 0 auto 16px;
}
.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Instructor */
.instructor {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(33, 25, 28, 0.9), rgba(24, 31, 33, 0.9));
  backdrop-filter: blur(10px);
}

.instructor__avatar {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(241, 145, 125, 0.3);
  background: rgba(33, 25, 28, 0.5);
  display: grid;
  place-items: center;
  justify-self: center;
}
.instructor__avatar img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(241, 145, 125, 0.2));
}

.instructor__text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 6px;
}

.instructor__role {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.instructor__text p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.instructor__text p strong { color: var(--text); }

.instructor__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-weight: 700;
  color: var(--coral);
  font-size: 0.95rem;
  transition: gap 0.25s var(--ease);
}
.instructor__more:hover { gap: 12px; }

/* Enroll Card */
.enroll-card {
  position: relative;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 60px);
  border: 1px solid rgba(241, 145, 125, 0.3);
  background:
    radial-gradient(ellipse at top, rgba(241, 145, 125, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  backdrop-filter: blur(12px);
  text-align: center;
  overflow: hidden;
}

.enroll-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--coral), transparent);
}

.enroll-card__inner {
  max-width: 640px;
  margin: 0 auto;
}

.enroll-card__tag {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(241, 145, 125, 0.4);
  background: rgba(241, 145, 125, 0.08);
}

.enroll-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

.enroll-card__desc {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 28px;
}

.enroll-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px 28px;
  border: 1px solid var(--line);
  background: rgba(15, 13, 16, 0.5);
}

.enroll-card__price-old {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}

.enroll-card__price-new {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--lime);
  line-height: 1;
}

.enroll-card__note {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* Related */
.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.92), rgba(24, 31, 33, 0.92));
  transition: all 0.35s var(--ease);
}

.related__card:hover {
  border-color: rgba(241, 145, 125, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.related__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related__card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.related__card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ============================================
   SHOP / GALLERY FILTERS
   ============================================ */
.shop-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.5);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}

.shop-filter {
  flex: 1;
  min-width: 90px;
  padding: 12px 18px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.shop-filter:hover {
  color: var(--text);
  background: rgba(255, 248, 239, 0.04);
}

.shop-filter.is-active {
  background: linear-gradient(135deg, rgba(241, 145, 125, 0.2), rgba(242, 199, 111, 0.1));
  border-color: rgba(241, 145, 125, 0.4);
  color: var(--text);
}

/* Shop Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.shop-item {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  transition: all 0.35s var(--ease);
}

.shop-item:hover {
  border-color: rgba(241, 145, 125, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.shop-item--featured {
  background:
    linear-gradient(135deg, rgba(241, 145, 125, 0.1), rgba(242, 199, 111, 0.06)),
    linear-gradient(180deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
  border-color: rgba(241, 145, 125, 0.25);
}

.shop-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}

.shop-item__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-item__badge {
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--coral);
  border: 1px solid rgba(241, 145, 125, 0.4);
  background: rgba(241, 145, 125, 0.1);
  letter-spacing: 0.05em;
}

.shop-item__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.shop-item__desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.shop-item__points {
  margin-bottom: 20px;
  flex: 1;
}
.shop-item__points li {
  padding: 4px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.shop-item__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(15, 13, 16, 0.5);
}
.shop-item__price span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
}
.shop-item__price strong {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--lime);
  line-height: 1;
}

.shop-item .btn {
  width: 100%;
  justify-content: center;
}

.shop-item[hidden] { display: none !important; }

/* ============================================
   GALLERY PAGE — Hierarchical Filter
   ============================================ */
.gallery-filters {
  margin-bottom: 36px;
}

.gallery-filters__main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 0;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(33, 25, 28, 0.5);
  backdrop-filter: blur(10px);
}

.filter-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}

.filter-main:hover {
  color: var(--text);
  background: rgba(255, 248, 239, 0.04);
}

.filter-main.is-active {
  background: linear-gradient(135deg, rgba(241, 145, 125, 0.2), rgba(242, 199, 111, 0.1));
  border-color: rgba(241, 145, 125, 0.4);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(241, 145, 125, 0.18);
}

.filter-main__icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--coral);
  flex-shrink: 0;
}
.filter-main__icon svg {
  width: 22px;
  height: 22px;
}

.filter-main__label {
  flex: 0 1 auto;
}

.filter-main__count {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 26px;
  padding: 0 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255, 248, 239, 0.06);
  border: 1px solid var(--line);
}
.filter-main.is-active .filter-main__count {
  color: var(--coral);
  background: rgba(241, 145, 125, 0.12);
  border-color: rgba(241, 145, 125, 0.35);
}

/* Sub-filter container */
.gallery-filters__subs {
  position: relative;
  min-height: 0;
}

.filter-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-top: 2px solid rgba(241, 145, 125, 0.3);
  background: rgba(15, 13, 16, 0.4);
  backdrop-filter: blur(8px);
  animation: subFadeIn 0.35s var(--ease);
}

.filter-subs[hidden] {
  display: none !important;
}

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

.filter-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(33, 25, 28, 0.5);
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.filter-sub:hover {
  color: var(--text);
  border-color: rgba(241, 145, 125, 0.3);
  background: rgba(241, 145, 125, 0.05);
}

.filter-sub.is-active {
  color: #160f10;
  background: var(--coral);
  border-color: var(--coral);
}

.filter-sub__count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 18px;
  padding: 0 6px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255, 248, 239, 0.08);
  border: 1px solid var(--line);
  color: var(--muted);
}

.filter-sub.is-active .filter-sub__count {
  background: rgba(22, 15, 16, 0.4);
  color: #160f10;
  border-color: rgba(22, 15, 16, 0.5);
}

/* Empty state */
.gallery-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(60px, 10vw, 100px) 24px;
  border: 1px dashed var(--line);
  background: rgba(33, 25, 28, 0.4);
  gap: 12px;
}

.gallery-empty[hidden] {
  display: none !important;
}

.gallery-empty svg {
  color: rgba(241, 145, 125, 0.5);
  margin-bottom: 8px;
}

.gallery-empty h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  margin: 0;
}

.gallery-empty p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid .work[hidden],
.gallery-grid .work-placeholder[hidden] {
  display: none !important;
}

.work-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 24px;
  border: 1px dashed var(--line);
  background: rgba(33, 25, 28, 0.4);
  transition: all 0.35s var(--ease);
}

.work-placeholder:hover {
  border-color: rgba(241, 145, 125, 0.3);
  background: rgba(33, 25, 28, 0.6);
}

.work-placeholder__inner {
  text-align: center;
  color: var(--muted);
}

.work-placeholder__inner svg {
  color: rgba(241, 145, 125, 0.5);
  margin: 0 auto 14px;
}

.work-placeholder__tag {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--coral);
  letter-spacing: 0.1em;
}

.work-placeholder__inner h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.work-placeholder__inner p {
  font-size: 0.85rem;
  margin: 0;
}

.gallery-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  background: rgba(122, 215, 207, 0.04);
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}
.gallery-note svg {
  color: var(--cyan);
  flex-shrink: 0;
}

/* ============================================
   LINKS PAGE
   ============================================ */
.links-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(241, 145, 125, 0.4);
  background: rgba(33, 25, 28, 0.7);
  display: grid;
  place-items: center;
  box-shadow: 0 0 40px rgba(241, 145, 125, 0.2);
}

.links-avatar img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.links-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(33, 25, 28, 0.9), rgba(24, 31, 33, 0.9));
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
}

.link-card:hover {
  border-color: rgba(241, 145, 125, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(241, 145, 125, 0.08), rgba(24, 31, 33, 0.9));
}

.link-card--primary {
  border-color: rgba(241, 145, 125, 0.3);
  background:
    linear-gradient(135deg, rgba(241, 145, 125, 0.1), rgba(242, 199, 111, 0.04)),
    linear-gradient(135deg, rgba(33, 25, 28, 0.95), rgba(24, 31, 33, 0.95));
}

.link-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: rgba(241, 145, 125, 0.08);
  color: var(--coral);
}
.link-card__icon svg {
  width: 22px;
  height: 22px;
}

.link-card__icon--ig {
  background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  color: #fff;
  border-color: transparent;
}
.link-card__icon--fb {
  background: #1877f2;
  color: #fff;
  border-color: transparent;
}
.link-card__icon--line {
  background: #06c755;
  color: #fff;
  border-color: transparent;
}
.link-card__icon--mail {
  background: rgba(122, 215, 207, 0.15);
  color: var(--cyan);
  border-color: rgba(122, 215, 207, 0.4);
}

.link-card__text {
  flex: 1;
  min-width: 0;
}

.link-card__text h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.link-card__text p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-card__arrow {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}

.link-card:hover .link-card__arrow {
  color: var(--coral);
  transform: translate(4px, -4px);
}

/* ============================================
   ACCESSIBILITY — Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .hero__particles,
  .hero__atmosphere,
  .avatar__ring,
  .marquee__track,
  .cursor-glow {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   RESPONSIVE — Multi-breakpoint System
   Breakpoints:
     1024px  large tablet / small laptop
     940px   tablet (existing)
     768px   small tablet
     560px   large phone (existing)
     480px   standard phone
     380px   small phone
   ============================================ */

/* ---- Touch-device hover disabling ----
   On touch devices, hover styles get "stuck" after tap.
   Disable transform-based hovers when the device has no hover capability. */
@media (hover: none) {
  .btn:hover,
  .manifesto__item:hover,
  .service:hover,
  .skill-card:hover,
  .timeline__content:hover,
  .work:hover,
  .testimonial:hover,
  .package:hover,
  .process__step:hover,
  .audience__card:hover,
  .feature:hover,
  .curriculum__item:hover,
  .shop-item:hover,
  .related__card:hover,
  .enroll-card:hover,
  .link-card:hover,
  .contact__social:hover,
  .contact__links a:hover,
  .back-to-top:hover,
  .work:hover .work__img img,
  .skill-card:hover .skill-card__list li {
    transform: none;
    box-shadow: none;
  }
  /* Replicate hover styles on :active for tap feedback */
  .btn:active { transform: translateY(-2px); }
  .manifesto__item:active,
  .service:active,
  .skill-card:active,
  .work:active,
  .testimonial:active,
  .package:active,
  .process__step:active,
  .audience__card:active,
  .feature:active,
  .curriculum__item:active,
  .shop-item:active,
  .related__card:active,
  .enroll-card:active,
  .link-card:active {
    border-color: rgba(241, 145, 125, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  }
  .work:active .work__img img { transform: scale(1.03); }
  .contact__social:active,
  .back-to-top:active { transform: translateY(-2px); }
}

/* ============================================
   1024px — large tablet / small laptop
   ============================================ */
@media (max-width: 1024px) {
  .hero__line { font-size: clamp(2.4rem, 6.5vw, 4.5rem); }
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
  .skills { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .process::before { display: none; }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .packages { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   940px — tablet
   ============================================ */
@media (max-width: 940px) {
  .nav__menu {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(15, 13, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-size: 1.1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
    z-index: 100;
  }
  .nav__menu.is-open {
    opacity: 1;
    pointer-events: all;
  }
  /* Mobile menu items: give them a tappable button shape */
  .nav__menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    min-height: 52px;
    padding: 14px 28px;
    border: 1px solid var(--line);
    background: rgba(33, 25, 28, 0.7);
    color: var(--text);
    font-weight: 600;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  }
  .nav__menu a::after { display: none; }
  .nav__menu a:active,
  .nav__menu a.is-active {
    border-color: var(--coral);
    background: var(--coral-dim);
    color: var(--coral);
  }

  .nav__cta { display: none; }
  .nav__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: rgba(33, 25, 28, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0;
    gap: 5px;
    /* Re-establish vertical stacking for the 3 spans */
    flex-direction: column;
  }
  .nav__burger.is-open {
    border-color: rgba(241, 145, 125, 0.4);
    background: var(--coral-dim);
  }

  .hero { padding: 100px 0 60px; }

  .hero__cols {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero__visual { order: -1; }
  .avatar { width: clamp(180px, 40vw, 240px); height: clamp(180px, 40vw, 240px); }
  .avatar__core { inset: clamp(28px, 6vw, 50px); }
  .avatar__ring--2 { inset: clamp(12px, 3vw, 20px); }
  .avatar__tag { display: none; }

  .hero__cta { justify-content: center; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__badge { margin-left: auto; margin-right: auto; }
  .hero__quote { text-align: left; max-width: 560px; margin-left: auto; margin-right: auto; }

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

  .about,
  .course,
  .services,
  .manifesto,
  .works,
  .packages,
  .testimonials {
    grid-template-columns: 1fr;
  }

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

  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .process::before { display: none; }

  .faq-tabs {
    flex-direction: column;
  }
  .faq-tab {
    justify-content: flex-start;
    text-align: left;
  }
  .faq-tab__label {
    flex: 1;
  }

  .lightbox__close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  /* Sub-pages RWD */
  .course-intro {
    grid-template-columns: 1fr;
  }
  .course-intro__benefits {
    position: static;
  }

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

  .curriculum__item {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }
  .curriculum__num {
    font-size: 1.4rem;
    padding-right: 16px;
  }

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

  .instructor {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .instructor__avatar {
    width: 180px;
    height: 180px;
  }
  .instructor__more {
    justify-self: center;
  }

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

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

  .shop-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .shop-filters::-webkit-scrollbar { display: none; }
  .shop-filter {
    flex: 0 0 auto;
  }

  /* Gallery hierarchical filter on tablet */
  .gallery-filters__main {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .filter-main {
    justify-content: flex-start;
    padding: 14px 16px;
  }
  .filter-main__label {
    flex: 1;
    text-align: left;
  }

  .about__card {
    position: static;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   768px — small tablet / large phone landscape
   ============================================ */
@media (max-width: 768px) {
  .container { padding: 0 clamp(16px, 4vw, 28px); }
  .section { padding: clamp(60px, 12vw, 100px) 0; }
  .section__head { margin-bottom: 40px; }

  .hero__title { margin-bottom: 22px; }
  .hero__badge { margin-bottom: 22px; font-size: 0.8rem; padding: 7px 14px; }
  .hero__line--sub { margin-top: 12px; }
  .hero__quote { padding-left: 20px; margin: 0 0 20px; }
  .hero__quote-mark { font-size: 2rem; }
  .hero__quote p { font-size: 1rem; }
  .hero__desc { margin-bottom: 26px; }
  .hero__stats { margin-top: 44px; }
  .stat { padding: 20px 14px; }

  /* Particle background lighter on small tablets */
  .hero__grid { background-size: 48px 48px; }

  .manifesto { gap: 16px; }
  .services { gap: 16px; }
  .skills { gap: 16px; }
  .works { gap: 18px; }
  .testimonials { gap: 18px; }
  .packages { gap: 16px; }

  .nav__inner { padding: 14px clamp(16px, 4vw, 32px); }
  .nav__logo-mark { width: 34px; height: 34px; font-size: 0.78rem; }
  .nav__logo-text { font-size: 0.9rem; }

  .marquee { padding: 14px 0; }

  .footer { padding: 28px 0; }
}

/* ============================================
   640px — large phone
   ============================================ */
@media (max-width: 640px) {
  .hero { padding: 90px 0 50px; }
  .hero__line { font-size: clamp(2rem, 11vw, 3rem); }
  .hero__line--sub { font-size: clamp(0.78rem, 3vw, 0.95rem); }
  .hero__desc { font-size: 0.98rem; }
  .hero__quote em { font-size: 1.02rem; }

  .avatar { width: clamp(160px, 50vw, 200px); height: clamp(160px, 50vw, 200px); }
  .avatar__core { inset: clamp(22px, 7vw, 36px); }

  .section__title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .section__head { margin-bottom: 32px; }

  .about__card { padding: 22px; }
  .about__lead { font-size: clamp(1.05rem, 4vw, 1.2rem) !important; }

  .manifesto__head { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .service__title { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }

  .course { padding: 24px; gap: 24px; }
  .course__info h3 { font-size: clamp(1.2rem, 5vw, 1.7rem); }
  .course__info p { font-size: 0.98rem; }
  .course__card-price { font-size: clamp(1.8rem, 7vw, 2.5rem); }
}

/* ============================================
   560px — standard phone (existing breakpoint, enhanced)
   ============================================ */
@media (max-width: 560px) {
  .nav__logo-text { display: none; }
  .nav__inner { padding: 12px 16px; }

  .hero { padding: 80px 0 40px; }
  .hero__line {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat { padding: 18px 10px; }
  .stat__num { font-size: clamp(1.5rem, 7vw, 2rem); }
  .stat__label { font-size: 0.78rem; }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { width: 100%; justify-content: center; padding: 14px 22px; font-size: 0.95rem; }

  /* Keep cursor-glow but smaller as ambient mobile effect */
  .cursor-glow {
    width: clamp(220px, 70vw, 320px);
    height: clamp(220px, 70vw, 320px);
    opacity: 0;
    background: radial-gradient(circle, rgba(241, 145, 125, 0.12) 0%, transparent 65%);
  }

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

  .timeline {
    padding-left: 28px;
  }
  .timeline__dot {
    left: -28px;
    width: 14px;
    height: 14px;
  }
  .timeline__content { padding: 18px; }
  .timeline__role { font-size: clamp(1.05rem, 5vw, 1.25rem); }

  .back-to-top {
    bottom: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .process__step { padding: 24px 18px; }

  .lightbox {
    padding: 16px;
  }
  .lightbox__img {
    max-height: 55vh;
  }

  .audience,
  .features,
  .shop-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .curriculum__item {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }
  .curriculum__num {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 12px;
    text-align: left;
  }

  .link-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .link-card__icon {
    width: 42px;
    height: 42px;
  }
  .link-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .contact__cta { flex-direction: column; align-items: stretch; }
  .contact__cta .btn { width: 100%; }
  .contact__social { width: 48px; height: 48px; align-self: center; }

  .contact__links { gap: 8px; }
  .contact__links a { padding: 8px 14px; font-size: 0.85rem; }

  .footer__inner { gap: 10px; font-size: 0.85rem; }

  /* Tighter section gutters on small phones */
  .container { padding: 0 16px; }
}

/* ============================================
   480px — phone portrait
   ============================================ */
@media (max-width: 480px) {
  .hero { padding: 72px 0 36px; }
  .hero__line { font-size: clamp(1.7rem, 9.5vw, 2.3rem); line-height: 1.15; }
  .hero__badge { font-size: 0.75rem; padding: 6px 12px; }
  .hero__desc { font-size: 0.94rem; margin-bottom: 22px; }
  .hero__quote { padding-left: 16px; }
  .hero__quote p { font-size: 0.95rem; }
  .hero__stats { margin-top: 36px; grid-template-columns: repeat(2, 1fr); }

  .avatar { width: clamp(150px, 55vw, 180px); height: clamp(150px, 55vw, 180px); }
  .avatar__core { inset: clamp(20px, 7vw, 30px); }
  /* Slow down avatar rings on small screens to feel calmer */
  .avatar__ring--1 { animation-duration: 28s; }
  .avatar__ring--2 { animation-duration: 22s; }

  .section { padding: clamp(50px, 14vw, 80px) 0; }
  .section__title { font-size: clamp(1.5rem, 8vw, 2.1rem); }
  .section__head { margin-bottom: 28px; }
  .section__num { font-size: 0.72rem; }

  .about__card { padding: 18px; }
  .about__card-row { padding: 10px 0; flex-wrap: wrap; gap: 6px; }
  .about__card-label { font-size: 0.78rem; }
  .about__card-value { font-size: 0.9rem; }
  .about__pull { padding: 16px 18px; margin: 22px 0; }

  .manifesto__item { padding: 22px 20px; }
  .manifesto__head { font-size: clamp(1.15rem, 5.5vw, 1.45rem); margin-bottom: 12px; }
  .manifesto__body { font-size: 0.92rem; }

  .service { padding: 22px 20px; }
  .service__icon { width: 40px; height: 40px; }
  .service__icon svg { width: 20px; height: 20px; }
  .service__title { font-size: clamp(1.05rem, 5vw, 1.3rem); }
  .service__desc { font-size: 0.92rem; }
  .service__bullets li { font-size: 0.88rem; }

  .skill-card { padding: 22px 20px; }
  .skill-card__icon { width: 40px; height: 40px; margin-bottom: 16px; }
  .skill-card h3 { font-size: clamp(1.05rem, 5vw, 1.25rem); }

  .process__step { padding: 22px 16px; }
  .process__step-icon { width: 48px; height: 48px; }

  .work__info { padding: 18px 16px; }
  .work__title { font-size: clamp(1rem, 4.5vw, 1.2rem); }
  .work__desc { font-size: 0.88rem; }

  .testimonial { padding: 22px 20px; }
  .testimonial__text { font-size: 0.92rem; line-height: 1.75; }

  .package { padding: 22px 20px; }
  .package h3 { font-size: 1.15rem; }

  .faq__q { padding: 18px 16px; font-size: 0.98rem; gap: 12px; }
  .faq__q::after { font-size: 1.25rem; }
  .faq__a { padding: 0 16px 18px; font-size: 0.92rem; }

  .contact__info h3 { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .contact__info p { font-size: 0.98rem; }

  .marquee { padding: 12px 0; }
  .marquee__track span {
    padding: 0 18px;
    font-size: clamp(0.82rem, 3.5vw, 0.95rem);
  }
  .marquee__track span::before { margin-right: 18px; }

  /* Course sub-page */
  .curriculum__item { padding: 18px 16px; }
  .features { gap: 12px; }
  .feature { padding: 20px 18px; }
  .audience { gap: 12px; }
  .audience__card { padding: 20px 18px; }
  .instructor__avatar { width: 150px; height: 150px; }

  /* Gallery / Shop */
  .gallery-grid,
  .shop-grid { gap: 16px; }

  /* Lightbox */
  .lightbox { padding: 12px; }
  .lightbox__close { width: 40px; height: 40px; top: 12px; right: 12px; }
  .lightbox__img { max-height: 50vh; }
  .lightbox__caption { padding: 14px; }
  .lightbox__title { font-size: 1.05rem; }

  /* Back to top closer to thumb-reach */
  .back-to-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
}

/* ============================================
   380px — small phone (iPhone SE etc.)
   ============================================ */
@media (max-width: 380px) {
  .hero { padding: 68px 0 32px; }
  .hero__line { font-size: clamp(1.5rem, 9vw, 1.95rem); }
  .hero__cta { gap: 10px; }

  .avatar { width: 140px; height: 140px; }
  .avatar__core { inset: 18px; }
  .avatar__logo { width: 72%; height: 72%; }

  .stat { padding: 14px 8px; }
  .stat__num { font-size: 1.4rem; }
  .stat__label { font-size: 0.72rem; }

  .section__title { font-size: clamp(1.35rem, 8vw, 1.8rem); }
  .container { padding: 0 14px; }

  .nav__logo-mark { width: 30px; height: 30px; font-size: 0.72rem; }

  .btn { padding: 12px 18px; font-size: 0.9rem; }

  .back-to-top { width: 40px; height: 40px; bottom: 14px; right: 14px; }
}

/* ============================================
   Landscape phone (height-constrained)
   Tighten hero so content fits without scrolling past hero
   ============================================ */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 80px 0 40px; }
  .hero__scroll { display: none; }
  .avatar { width: 140px; height: 140px; }
  .hero__stats { margin-top: 28px; }
}

/* ============================================
   High-DPI / fine-pointer cursor-glow refinement
   ============================================ */
@media (hover: hover) and (pointer: fine) {
  .cursor-glow {
    width: 600px;
    height: 600px;
  }
}
