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

.process__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(235, 170, 201, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(247, 147, 30, 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(247, 147, 30, 0.4) 10%,
    rgba(235, 170, 201, 0.3) 50%,
    rgba(248, 156, 50, 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(255, 252, 246, 0.92), rgba(245, 236, 221, 0.92));
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.process__step:hover {
  border-color: rgba(247, 147, 30, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(46, 34, 25, 0.3);
}

.process__step--featured {
  background:
    linear-gradient(135deg, rgba(247, 147, 30, 0.12), rgba(248, 156, 50, 0.06)),
    linear-gradient(180deg, rgba(255, 252, 246, 0.95), rgba(245, 236, 221, 0.95));
  border-color: rgba(247, 147, 30, 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(247, 147, 30, 0.3);
  background: rgba(247, 147, 30, 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: #1A130C;
  box-shadow: 0 0 24px rgba(247, 147, 30, 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(235, 170, 201, 0.3);
  background: rgba(235, 170, 201, 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(255, 252, 246, 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(46, 34, 25, 0.04);
}

.faq-tab.is-active {
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.18), rgba(248, 156, 50, 0.1));
  border-color: rgba(247, 147, 30, 0.35);
  color: var(--text);
  box-shadow: 0 6px 20px rgba(247, 147, 30, 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(46, 34, 25, 0.06);
  border: 1px solid var(--line);
}

.faq-tab.is-active .faq-tab__count {
  color: var(--coral);
  background: rgba(247, 147, 30, 0.1);
  border-color: rgba(247, 147, 30, 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(251, 246, 238, 0.15) 0%, rgba(251, 246, 238, 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(247, 147, 30, 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(255, 252, 246, 0.8);
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  transition: all 0.25s var(--ease);
}
.lightbox__close:hover {
  background: var(--coral);
  color: #1A130C;
  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(46, 34, 25, 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(255, 252, 246, 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(247, 147, 30, 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(255, 252, 246, 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(248, 156, 50, 0.4);
  background: linear-gradient(135deg, rgba(248, 156, 50, 0.12), rgba(247, 147, 30, 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(247, 147, 30, 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(247, 147, 30, 0.15);
  border: 1px solid rgba(247, 147, 30, 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(255, 252, 246, 0.9), rgba(245, 236, 221, 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(255, 252, 246, 0.92), rgba(245, 236, 221, 0.92));
  text-align: center;
  transition: all 0.35s var(--ease);
}

.audience__card:hover {
  border-color: rgba(247, 147, 30, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(46, 34, 25, 0.3);
}

.audience__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 147, 30, 0.3);
  background: rgba(247, 147, 30, 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(255, 252, 246, 0.9), rgba(245, 236, 221, 0.9));
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.curriculum__item:hover {
  border-color: rgba(247, 147, 30, 0.3);
  transform: translateX(4px);
}

.curriculum__item--featured {
  border-color: rgba(247, 147, 30, 0.3);
  background:
    linear-gradient(135deg, rgba(247, 147, 30, 0.08), rgba(248, 156, 50, 0.04)),
    linear-gradient(135deg, rgba(255, 252, 246, 0.92), rgba(245, 236, 221, 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(46, 34, 25, 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(255, 252, 246, 0.92), rgba(245, 236, 221, 0.92));
  text-align: center;
  transition: all 0.35s var(--ease);
}
.feature:hover {
  border-color: rgba(247, 147, 30, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(46, 34, 25, 0.3);
}

.feature__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(247, 147, 30, 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: minmax(200px, 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(255, 252, 246, 0.9), rgba(245, 236, 221, 0.9));
  backdrop-filter: blur(10px);
}

.instructor__avatar {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(247, 147, 30, 0.35);
  background:
    radial-gradient(circle at 30% 30%, rgba(247, 147, 30, 0.10), transparent 60%),
    rgba(255, 252, 246, 0.6);
  box-shadow: 0 0 60px rgba(247, 147, 30, 0.18), inset 0 0 30px rgba(46, 34, 25, 0.4);
  display: grid;
  place-items: center;
  justify-self: center;
  margin: 0 auto;
}
.instructor__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: drop-shadow(0 0 24px rgba(247, 147, 30, 0.28));
}
/* Real photo: no zoom/glow, clean fill */
.instructor__avatar--photo {
  background: var(--panel);
}
.instructor__avatar--photo img {
  transform: none;
  filter: none;
}

/* ===== Free resource doc page ===== */
.resource-doc {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 56px);
}
.resource-doc__head {
  text-align: center;
  padding-bottom: clamp(24px, 4vw, 36px);
  margin-bottom: clamp(24px, 4vw, 36px);
  border-bottom: 2px solid var(--coral);
}
.resource-doc__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  border: 1px solid var(--coral);
  background: var(--coral-dim);
  padding: 4px 12px;
  margin-bottom: 16px;
}
.resource-doc__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 14px;
}
.resource-doc__sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 22px;
}
.resource-doc__print { margin: 0 auto; }

.resource-block { margin-bottom: clamp(24px, 3vw, 32px); }
.resource-block__h {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--coral);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.resource-check { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.resource-check li {
  position: relative;
  padding: 12px 16px 12px 44px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}
.resource-check li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--coral);
  border-radius: 4px;
}
.resource-check strong { color: var(--coral); font-weight: 600; }

.resource-doc__cta {
  margin-top: clamp(28px, 4vw, 40px);
  padding: clamp(24px, 4vw, 32px);
  text-align: center;
  background: var(--coral-dim);
  border: 1px solid rgba(247, 147, 30, 0.3);
}
.resource-doc__cta-text { font-size: 1.05rem; margin: 0 0 18px; }
.resource-doc__cta-text strong { color: var(--coral); }
.resource-doc__cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.resource-doc__foot {
  margin: 28px 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.8;
}

@media print {
  .nav, .line-fab, .back-to-top, .resource-doc__print, .skip-link, .cursor-glow { display: none !important; }
  body { background: #fff; }
  .resource-doc { box-shadow: none; border: none; padding: 0; }
  .resource-check li { break-inside: avoid; }
}

.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; }

/* ============================================
   COURSE PAGE — Landing components (v2)
   Painpoint / Philosophy / Workflow / Learn /
   Days / Takeaway / Fit / Applications / BigQuote / EnrollInfo
   ============================================ */

/* Painpoint */
.painpoint {
  max-width: 820px;
  margin: 0 auto;
}
.painpoint__intro {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted);
  text-align: center;
  margin: 0 auto 32px;
  line-height: 1.85;
}
.painpoint__list {
  display: grid;
  gap: 12px;
  margin: 0;
}
.painpoint__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background: rgba(255, 252, 246, 0.55);
  border: 1px solid var(--line);
  border-left: 3px solid var(--coral);
  font-size: 0.98rem;
  color: var(--text);
}
.painpoint__item-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--coral);
}
.painpoint__outro {
  margin: 36px auto 0;
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
}
.painpoint__outro strong {
  color: var(--text);
  font-weight: 600;
}

/* Philosophy */
.philosophy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.philosophy__lead {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 32px;
}
.philosophy__lead strong { color: var(--coral); font-weight: 700; }
.philosophy__body {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}
.philosophy__body strong { color: var(--text); font-weight: 600; }
.philosophy__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin: 24px auto 0;
  text-align: left;
  max-width: 720px;
}
.philosophy__list li {
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(255, 252, 246, 0.5);
  border: 1px solid var(--line);
  border-left: 2px solid var(--cyan);
}

/* Workflow */
.workflow {
  max-width: 1040px;
  margin: 0 auto;
}
.workflow__lead {
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 28px;
}
.workflow__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.workflow__step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: rgba(255, 252, 246, 0.7);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: all 0.3s var(--ease);
}
.workflow__step:hover {
  border-color: rgba(247, 147, 30, 0.4);
  transform: translateY(-2px);
}
.workflow__step--final {
  border-color: var(--coral);
  background: rgba(247, 147, 30, 0.08);
  color: var(--coral);
}
.workflow__step-num {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--coral);
  border: 1px solid var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
}
.workflow__step--final .workflow__step-num {
  background: var(--coral);
  color: #1A130C;
}
.workflow__arrow {
  color: var(--muted);
  opacity: 0.4;
  font-size: 1.1rem;
}
.workflow__note {
  margin: 32px auto 0;
  text-align: center;
  max-width: 720px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.9;
}
.workflow__note strong { color: var(--text); font-weight: 600; }

/* Big Quote */
.section--quote { padding-block: clamp(40px, 6vw, 80px); }
.big-quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.005em;
  position: relative;
  padding: clamp(20px, 3vw, 32px) clamp(16px, 3vw, 32px);
}
.big-quote::before,
.big-quote::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--coral);
  margin: 0 auto;
}
.big-quote::before { margin-bottom: clamp(20px, 3vw, 32px); }
.big-quote::after { margin-top: clamp(20px, 3vw, 32px); }
.big-quote em {
  color: var(--coral);
  font-style: normal;
  font-weight: 700;
}

/* Learn (7 cards) */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.learn-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 252, 246, 0.6);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.learn-card:hover {
  border-color: rgba(247, 147, 30, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(46, 34, 25, 0.25);
}
.learn-card__num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--coral);
  font-weight: 700;
}
.learn-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  color: var(--text);
}
.learn-card__desc {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.85;
  margin: 0;
}

/* Days (Day 1 / Day 2) */
.days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}
.day-card {
  padding: clamp(28px, 4vw, 40px);
  background: linear-gradient(160deg, rgba(255, 252, 246, 0.92), rgba(245, 236, 221, 0.92));
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.day-card__tag {
  align-self: flex-start;
  padding: 5px 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--coral);
  border: 1px solid var(--coral);
  background: rgba(247, 147, 30, 0.08);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.day-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 14px;
}
.day-card__lead {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
  margin: 0 0 22px;
}
.day-card__sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--coral);
  text-transform: uppercase;
  margin: 18px 0 10px;
  font-weight: 700;
}
.day-card__list {
  display: grid;
  gap: 6px;
  margin: 0;
}
.day-card__list li {
  padding: 10px 14px;
  background: rgba(251, 246, 238, 0.55);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
  border-left: 2px solid rgba(247, 147, 30, 0.4);
}
.day-card__list--check li {
  position: relative;
  padding-left: 36px;
  border-left: none;
  background: rgba(235, 170, 201, 0.06);
  border: 1px solid rgba(235, 170, 201, 0.18);
}
.day-card__list--check li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Takeaway */
.takeaway {
  max-width: 760px;
  margin: 0 auto;
}
.takeaway__intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 32px;
}
.takeaway__intro strong { color: var(--text); font-weight: 600; }
.takeaway__list {
  display: grid;
  gap: 10px;
  margin: 0;
}
.takeaway__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255, 252, 246, 0.5);
  border: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.55;
}
.takeaway__list li::before {
  content: '✓';
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  background: rgba(247, 147, 30, 0.12);
  color: var(--coral);
  font-weight: 700;
  border-radius: 50%;
}
.takeaway__outro {
  margin: 32px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}
.takeaway__outro strong { color: var(--text); font-weight: 600; }

/* Fit / NoFit */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}
.fit-card {
  padding: clamp(26px, 4vw, 36px);
  background: rgba(255, 252, 246, 0.6);
  border: 1px solid var(--line);
}
.fit-card--yes { border-top: 3px solid var(--cyan); }
.fit-card--no { border-top: 3px solid #ec6a6a; }
.fit-card__tag {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin: 0 0 6px;
}
.fit-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 18px;
}
.fit-card--yes .fit-card__title { color: var(--cyan); }
.fit-card--no .fit-card__title { color: #ec6a6a; }
.fit-card__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fit-card__list li {
  padding-left: 26px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
}
.fit-card--yes .fit-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 700;
}
.fit-card--no .fit-card__list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0;
  color: #ec6a6a;
  font-weight: 700;
}
.fit-card__note {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  margin: 18px 0 0;
}
.fit-card__note strong { color: var(--text); font-weight: 600; }

/* Applications */
.applications-lead {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.85;
}
.applications-lead strong { color: var(--text); font-weight: 600; }
.applications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  max-width: 980px;
  margin: 0 auto 36px;
}
.application {
  padding: 16px 20px;
  background: rgba(255, 252, 246, 0.5);
  border: 1px solid var(--line);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s var(--ease);
}
.application:hover {
  border-color: rgba(247, 147, 30, 0.3);
  transform: translateY(-2px);
}
.application__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
}
.applications-outro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}
.applications-outro p { margin: 0 0 18px; }
.applications-outro strong { color: var(--text); font-weight: 600; }
.applications-roles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  text-align: left;
  margin: 18px 0 0;
  padding: 0;
}
.applications-roles li {
  padding: 12px 16px;
  background: rgba(255, 252, 246, 0.5);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.applications-roles li strong {
  display: inline-block;
  color: var(--coral);
  font-weight: 700;
  margin-right: 6px;
}

/* Enroll Info Table */
.enroll-info {
  margin: 28px auto;
  max-width: 600px;
  text-align: left;
  display: grid;
  gap: 0;
  padding: 0;
}
.enroll-info__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.93rem;
}
.enroll-info__row:last-child { border-bottom: none; }
.enroll-info dt {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  padding-top: 2px;
}
.enroll-info dd {
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   ORIGIN PAGE — 初發心平台 (story / narrative)
   ============================================ */
.story {
  max-width: 720px;
  margin: 0 auto;
}
.story__body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 2;
  margin: 0 0 22px;
}
.story__body strong { color: var(--text); font-weight: 600; }
.story__body em { color: var(--coral); font-style: italic; font-weight: 500; }
.story__lead {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--text);
  font-weight: 500;
  text-align: center;
  margin: 36px auto 0;
  line-height: 1.6;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* Dialogue */
.story-dialogue {
  margin: 28px 0;
  padding: 24px 28px;
  background: rgba(255, 252, 246, 0.6);
  border: 1px solid var(--line);
  border-left: 3px solid var(--coral);
}
.story-dialogue__line {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 12px;
  padding-left: 56px;
  position: relative;
}
.story-dialogue__line:last-child { margin-bottom: 0; }
.story-dialogue__line--key {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--coral);
}
.story-dialogue__who {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--coral);
  background: rgba(247, 147, 30, 0.1);
  border: 1px solid var(--coral);
  padding: 2px 8px;
  text-transform: uppercase;
}

/* Observations */
.story-observations {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
}
.story-observations li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255, 252, 246, 0.5);
  border: 1px solid var(--line);
  font-size: 0.98rem;
  color: var(--text);
}
.story-observations__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
}
.story-observations strong { color: var(--coral); font-weight: 600; }

/* Rules */
.story-rules {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.story-rules li {
  display: flex;
  gap: 20px;
  padding: 22px 24px;
  background: rgba(255, 252, 246, 0.6);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.story-rules li:hover {
  border-color: rgba(247, 147, 30, 0.3);
  transform: translateY(-2px);
}
.story-rules__num {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--coral);
  width: 36px;
  text-align: center;
  padding-top: 2px;
}
.story-rules h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.4;
}
.story-rules p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.7;
}
.story-rules p strong { color: var(--text); font-weight: 600; }

/* Support Card */
.support-card {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(247, 147, 30, 0.1) 0%, transparent 60%),
    rgba(255, 252, 246, 0.7);
  border: 1px solid rgba(247, 147, 30, 0.25);
}
.support-card__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: var(--coral);
  border: 1px solid var(--coral);
  border-radius: 50%;
  background: rgba(247, 147, 30, 0.08);
}
.support-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 700;
  margin: 0 0 18px;
}
.support-card__body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin: 0 0 14px;
}
.support-card__body strong { color: var(--text); font-weight: 600; }
.support-card__note {
  font-size: 0.88rem;
  color: var(--muted);
  opacity: 0.75;
  margin: 18px 0 24px;
  line-height: 1.7;
}
.support-card__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Signature */
.story-signature {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 0;
}
.story-signature__above {
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 0 0 18px;
}
.story-signature__name {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--coral);
  margin: 0 0 6px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.story-signature__role {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

/* Enroll Card */
.enroll-card {
  position: relative;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 60px);
  border: 1px solid rgba(247, 147, 30, 0.3);
  background:
    radial-gradient(ellipse at top, rgba(247, 147, 30, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255, 252, 246, 0.95), rgba(245, 236, 221, 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(247, 147, 30, 0.4);
  background: rgba(247, 147, 30, 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(251, 246, 238, 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(255, 252, 246, 0.92), rgba(245, 236, 221, 0.92));
  transition: all 0.35s var(--ease);
}

.related__card:hover {
  border-color: rgba(247, 147, 30, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(46, 34, 25, 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(255, 252, 246, 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(46, 34, 25, 0.04);
}

.shop-filter.is-active {
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.2), rgba(248, 156, 50, 0.1));
  border-color: rgba(247, 147, 30, 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(255, 252, 246, 0.95), rgba(245, 236, 221, 0.95));
  transition: all 0.35s var(--ease);
}

.shop-item:hover {
  border-color: rgba(247, 147, 30, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(46, 34, 25, 0.3);
}

.shop-item--featured {
  background:
    linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(248, 156, 50, 0.06)),
    linear-gradient(180deg, rgba(255, 252, 246, 0.95), rgba(245, 236, 221, 0.95));
  border-color: rgba(247, 147, 30, 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(247, 147, 30, 0.4);
  background: rgba(247, 147, 30, 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(251, 246, 238, 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(255, 252, 246, 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(46, 34, 25, 0.04);
}

.filter-main.is-active {
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.2), rgba(248, 156, 50, 0.1));
  border-color: rgba(247, 147, 30, 0.4);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(247, 147, 30, 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(46, 34, 25, 0.06);
  border: 1px solid var(--line);
}
.filter-main.is-active .filter-main__count {
  color: var(--coral);
  background: rgba(247, 147, 30, 0.12);
  border-color: rgba(247, 147, 30, 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(247, 147, 30, 0.3);
  background: rgba(251, 246, 238, 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(255, 252, 246, 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(247, 147, 30, 0.3);
  background: rgba(247, 147, 30, 0.05);
}

.filter-sub.is-active {
  color: #1A130C;
  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(46, 34, 25, 0.08);
  border: 1px solid var(--line);
  color: var(--muted);
}

.filter-sub.is-active .filter-sub__count {
  background: var(--coral);
  color: #1A130C;
  border-color: var(--coral);
}

/* 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(255, 252, 246, 0.4);
  gap: 12px;
}

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

.gallery-empty svg {
  color: rgba(247, 147, 30, 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(255, 252, 246, 0.4);
  transition: all 0.35s var(--ease);
}

.work-placeholder:hover {
  border-color: rgba(247, 147, 30, 0.3);
  background: rgba(255, 252, 246, 0.6);
}

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

.work-placeholder__inner svg {
  color: rgba(247, 147, 30, 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(235, 170, 201, 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: clamp(160px, 40vw, 220px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(247, 147, 30, 0.4);
  background:
    radial-gradient(circle at 30% 30%, rgba(247, 147, 30, 0.10), transparent 60%),
    rgba(255, 252, 246, 0.7);
  display: grid;
  place-items: center;
  box-shadow: 0 0 60px rgba(247, 147, 30, 0.22), inset 0 0 30px rgba(46, 34, 25, 0.4);
}

.links-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: drop-shadow(0 0 24px rgba(247, 147, 30, 0.28));
}

.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(255, 252, 246, 0.9), rgba(245, 236, 221, 0.9));
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
}

.link-card:hover {
  border-color: rgba(247, 147, 30, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(46, 34, 25, 0.3);
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.08), rgba(245, 236, 221, 0.9));
}

.link-card--primary {
  border-color: rgba(247, 147, 30, 0.3);
  background:
    linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(248, 156, 50, 0.04)),
    linear-gradient(135deg, rgba(255, 252, 246, 0.95), rgba(245, 236, 221, 0.95));
}

.link-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: rgba(247, 147, 30, 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(235, 170, 201, 0.15);
  color: var(--cyan);
  border-color: rgba(235, 170, 201, 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);
}

